diff --git a/.changeset/ninety-hornets-ask.md b/.changeset/ninety-hornets-ask.md new file mode 100644 index 0000000000..6abe564441 --- /dev/null +++ b/.changeset/ninety-hornets-ask.md @@ -0,0 +1,7 @@ +--- +"@nomicfoundation/edr": minor +--- + +Removed `getLatestSupportedSolcVersion` API + +BREAKING CHANGE: A new API `latestSupportedSolidityVersion` was previously introduced to replace the deprecated `getLatestSupportedSolcVersion`. The old API has now been removed. Users should update their code to use `latestSupportedSolidityVersion` instead. diff --git a/.changeset/tasty-ears-drive.md b/.changeset/tasty-ears-drive.md new file mode 100644 index 0000000000..c9471ddbee --- /dev/null +++ b/.changeset/tasty-ears-drive.md @@ -0,0 +1,9 @@ +--- +"@nomicfoundation/edr": minor +--- + +Added support to the `debug_traceCall` & `debug_traceTransaction` JSON-RPC methods for different tracers (`4byteTracer`, `callTracer`, `flatCallTracer`, `prestateTracer`, `noopTracer`, and `muxTracer`). + +Our API is now aligned with Geth's tracing capabilities. + +BREAKING CHANGE: Memory capture used to be enabled by default on geth, but has since been flipped and is now disabled by default. We have followed suit and disabled it by default as well. If you were relying on memory capture, you will need to explicitly enable it by setting the `enableMemory` option to `true` in your tracer configuration. diff --git a/Cargo.lock b/Cargo.lock index 8a70e4fe83..fdd727643c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3178,6 +3178,7 @@ dependencies = [ "alloy-eips", "alloy-rlp", "alloy-rpc-types", + "alloy-rpc-types-trace", "alloy-serde", "alloy-sol-types", "anyhow", @@ -3235,6 +3236,7 @@ dependencies = [ "paste", "rand 0.9.1", "revm-inspector", + "revm-inspectors", "rpds", "serde", "serde_json", @@ -7107,8 +7109,7 @@ dependencies = [ [[package]] name = "revm-inspectors" version = "0.33.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c93974333e7acc4b2dc024b10def99707f7375a4d53db7a7f8351722d25673f" +source = "git+https://github.com/Wodann/revm-inspectors?rev=062c206#062c20626499c0279bed9fafda03281b8de8bf0d" dependencies = [ "alloy-primitives", "alloy-rpc-types-eth", diff --git a/Cargo.toml b/Cargo.toml index bbefe6e304..9771d1dd34 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -445,3 +445,6 @@ useless_transmute = "warn" verbose_file_reads = "warn" wildcard-imports = "warn" zero_sized_map_values = "warn" + +[patch.crates-io] +revm-inspectors = { git = "https://github.com/Wodann/revm-inspectors", rev = "062c206" } diff --git a/crates/edr_napi/index.d.ts b/crates/edr_napi/index.d.ts index 9dfdde5134..2c6838f0bf 100644 --- a/crates/edr_napi/index.d.ts +++ b/crates/edr_napi/index.d.ts @@ -1501,11 +1501,6 @@ export interface TracingMessageResult { /** Execution result */ readonly executionResult: ExecutionResult } -/** - * Returns the latest version of solc that EDR officially - * supports and is tested against. - */ -export declare function getLatestSupportedSolcVersion(): string export interface Withdrawal { /** The index of withdrawal */ index: bigint diff --git a/crates/edr_napi/index.js b/crates/edr_napi/index.js index b5f19fd5cf..7c0176bbd3 100644 --- a/crates/edr_napi/index.js +++ b/crates/edr_napi/index.js @@ -310,7 +310,7 @@ if (!nativeBinding) { throw new Error(`Failed to load native binding`) } -const { GENERIC_CHAIN_TYPE, genericChainProviderFactory, L1_CHAIN_TYPE, l1GenesisState, l1ProviderFactory, SpecId, l1HardforkFromString, l1HardforkToString, l1HardforkLatest, FRONTIER, FRONTIER_THAWING, HOMESTEAD, DAO_FORK, TANGERINE, SPURIOUS_DRAGON, BYZANTIUM, CONSTANTINOPLE, PETERSBURG, ISTANBUL, MUIR_GLACIER, BERLIN, LONDON, ARROW_GLACIER, GRAY_GLACIER, MERGE, SHANGHAI, CANCUN, PRAGUE, OSAKA, OpHardfork, opHardforkFromString, opHardforkToString, opLatestHardfork, OP_CHAIN_TYPE, opGenesisState, opProviderFactory, BEDROCK, REGOLITH, CANYON, ECOTONE, FJORD, GRANITE, HOLOCENE, ISTHMUS, MineOrdering, EdrContext, ContractDecoder, GasReportExecutionStatus, addStatementCoverageInstrumentation, latestSupportedSolidityVersion, Precompile, precompileP256Verify, ProviderFactory, Response, Provider, SuccessReason, ExceptionalHalt, CachedChains, CachedEndpoints, FsAccessPermission, CollectStackTraces, IncludeTraces, SolidityTestRunnerFactory, l1SolidityTestRunnerFactory, opSolidityTestRunnerFactory, SuiteResult, TestResult, TestStatus, CallKind, LogKind, linkHexStringBytecode, printStackTrace, Exit, ExitCode, BytecodeWrapper, ContractFunctionType, ReturnData, StackTraceEntryType, stackTraceEntryTypeToString, FALLBACK_FUNCTION_NAME, RECEIVE_FUNCTION_NAME, CONSTRUCTOR_FUNCTION_NAME, UNRECOGNIZED_FUNCTION_NAME, UNKNOWN_FUNCTION_NAME, PRECOMPILE_FUNCTION_NAME, UNRECOGNIZED_CONTRACT_NAME, RawTrace, getLatestSupportedSolcVersion } = nativeBinding +const { GENERIC_CHAIN_TYPE, genericChainProviderFactory, L1_CHAIN_TYPE, l1GenesisState, l1ProviderFactory, SpecId, l1HardforkFromString, l1HardforkToString, l1HardforkLatest, FRONTIER, FRONTIER_THAWING, HOMESTEAD, DAO_FORK, TANGERINE, SPURIOUS_DRAGON, BYZANTIUM, CONSTANTINOPLE, PETERSBURG, ISTANBUL, MUIR_GLACIER, BERLIN, LONDON, ARROW_GLACIER, GRAY_GLACIER, MERGE, SHANGHAI, CANCUN, PRAGUE, OSAKA, OpHardfork, opHardforkFromString, opHardforkToString, opLatestHardfork, OP_CHAIN_TYPE, opGenesisState, opProviderFactory, BEDROCK, REGOLITH, CANYON, ECOTONE, FJORD, GRANITE, HOLOCENE, ISTHMUS, MineOrdering, EdrContext, ContractDecoder, GasReportExecutionStatus, addStatementCoverageInstrumentation, latestSupportedSolidityVersion, Precompile, precompileP256Verify, ProviderFactory, Response, Provider, SuccessReason, ExceptionalHalt, CachedChains, CachedEndpoints, FsAccessPermission, CollectStackTraces, IncludeTraces, SolidityTestRunnerFactory, l1SolidityTestRunnerFactory, opSolidityTestRunnerFactory, SuiteResult, TestResult, TestStatus, CallKind, LogKind, linkHexStringBytecode, printStackTrace, Exit, ExitCode, BytecodeWrapper, ContractFunctionType, ReturnData, StackTraceEntryType, stackTraceEntryTypeToString, FALLBACK_FUNCTION_NAME, RECEIVE_FUNCTION_NAME, CONSTRUCTOR_FUNCTION_NAME, UNRECOGNIZED_FUNCTION_NAME, UNKNOWN_FUNCTION_NAME, PRECOMPILE_FUNCTION_NAME, UNRECOGNIZED_CONTRACT_NAME, RawTrace } = nativeBinding module.exports.GENERIC_CHAIN_TYPE = GENERIC_CHAIN_TYPE module.exports.genericChainProviderFactory = genericChainProviderFactory @@ -399,4 +399,3 @@ module.exports.UNKNOWN_FUNCTION_NAME = UNKNOWN_FUNCTION_NAME module.exports.PRECOMPILE_FUNCTION_NAME = PRECOMPILE_FUNCTION_NAME module.exports.UNRECOGNIZED_CONTRACT_NAME = UNRECOGNIZED_CONTRACT_NAME module.exports.RawTrace = RawTrace -module.exports.getLatestSupportedSolcVersion = getLatestSupportedSolcVersion diff --git a/crates/edr_napi/src/trace.rs b/crates/edr_napi/src/trace.rs index ee277f7b25..03057a2427 100644 --- a/crates/edr_napi/src/trace.rs +++ b/crates/edr_napi/src/trace.rs @@ -190,10 +190,3 @@ impl RawTrace { .collect() } } - -#[napi] -/// Returns the latest version of solc that EDR officially -/// supports and is tested against. -pub fn get_latest_supported_solc_version() -> String { - "0.8.28".to_string() -} diff --git a/crates/edr_provider/Cargo.toml b/crates/edr_provider/Cargo.toml index ea79da7f55..2aa2d808cf 100644 --- a/crates/edr_provider/Cargo.toml +++ b/crates/edr_provider/Cargo.toml @@ -8,6 +8,7 @@ alloy-dyn-abi.workspace = true alloy-eips.workspace = true alloy-rlp.workspace = true alloy-rpc-types.workspace = true +alloy-rpc-types-trace = "1.1.2" alloy-serde.workspace = true alloy-sol-types.workspace = true anyhow = { workspace = true, optional = true } @@ -71,6 +72,7 @@ lru = "0.12.2" parking_lot.workspace = true rand.workspace = true revm-inspector.workspace = true +revm-inspectors.workspace = true rpds = { version = "1.1.0", default-features = false, features = ["std"] } serde.workspace = true serde_json.workspace = true diff --git a/crates/edr_provider/src/data.rs b/crates/edr_provider/src/data.rs index d979261a82..54e91111f6 100644 --- a/crates/edr_provider/src/data.rs +++ b/crates/edr_provider/src/data.rs @@ -13,11 +13,12 @@ use std::{ use alloy_dyn_abi::eip712::TypedData; use alloy_eips::eip7825; use alloy_rpc_types::EIP1186AccountProofResponse; +use alloy_rpc_types_trace::geth::GethDebugTracingOptions; use edr_block_api::{ Block, BlockAndTotalDifficulty, FetchBlockReceipts as _, GenesisBlockFactory, GenesisBlockOptions, }; -use edr_block_builder_api::BuiltBlockAndState; +use edr_block_builder_api::{BuiltBlockAndState, DatabaseComponents, WrapDatabaseRef}; use edr_block_header::{ calculate_next_base_fee_per_blob_gas, BlockConfig, BlockHeader, HeaderOverrides, }; @@ -44,6 +45,7 @@ use edr_eth::{ reward_percentile::RewardPercentile, BlockSpec, BlockTag, Eip1898BlockSpec, }; +use edr_evm::guaranteed_dry_run_with_inspector; use edr_gas_report::{GasReport, SyncOnCollectedGasReportCallback}; use edr_mem_pool::{account_next_nonce, MemPool, OrderedTransaction}; use edr_precompile::PrecompileFn; @@ -76,18 +78,19 @@ use gas::gas_used_ratio; use indexmap::IndexMap; use itertools::izip; use lru::LruCache; +use revm_inspectors::tracing::DebugInspector; use rpds::HashTrieMapSync; use tokio::runtime; use crate::{ - data::gas::{compute_rewards, BinarySearchEstimationArgs, CheckGasLimitArgs}, + data::{ + call::BlockEnvWithZeroBaseFee, + gas::{compute_rewards, BinarySearchEstimationArgs, CheckGasLimitArgs}, + }, debug_mine::{ DebugMineBlockResult, DebugMineBlockResultAndState, DebugMineBlockResultForChainSpec, }, - debug_trace::{ - debug_trace_transaction, execution_result_to_debug_result, DebugTraceConfig, - DebugTraceResultWithTraces, TracerEip3155, - }, + debug_trace::{debug_trace_transaction, DebugTraceResultWithTraces}, error::{ CreationError, CreationErrorForChainSpec, EstimateGasFailure, ProviderErrorForChainSpec, TransactionFailure, TransactionFailureWithTraces, @@ -104,7 +107,7 @@ use crate::{ SyncBlockchainForChainSpec, SyncProviderSpec, TransactionAndBlockForChainSpec, }, time::{CurrentTime, TimeSinceEpoch}, - ForkConfig, MiningConfig, ProviderConfig, ProviderError, SubscriptionEvent, + DebugTraceError, ForkConfig, MiningConfig, ProviderConfig, ProviderError, SubscriptionEvent, SubscriptionEventData, SyncSubscriberCallback, }; @@ -1767,38 +1770,39 @@ where &mut self, transaction: ChainSpecT::SignedTransaction, block_spec: &BlockSpec, - trace_config: DebugTraceConfig, + tracing_options: GethDebugTracingOptions, ) -> Result< DebugTraceResultWithTraces, ProviderErrorForChainSpec, > { let cfg_env = self.create_evm_config_at_block_spec(block_spec)?; + let mut debug_inspector = DebugInspector::new(tracing_options) + .map_err(DebugTraceError::from_debug_inspector_creation_error)?; + let mut evm_observer = EvmObserver::new(EvmObserverConfig { call_override: None, ..EvmObserverConfig::from(&self.observability) }); - let mut eip3155_tracer = TracerEip3155::new(trace_config); let custom_precompiles = self.precompile_overrides.clone(); let scheduled_blob_params = self.scheduled_blob_params().cloned(); self.execute_in_block_context(Some(block_spec), move |blockchain, block, state| { - let mut inspector = DualInspector::new(&mut eip3155_tracer, &mut evm_observer); - let block_env = ChainSpecT::BlockEnv::new_block_env( + let block_env = BlockEnvWithZeroBaseFee::new(ChainSpecT::BlockEnv::new_block_env( block.block_header(), cfg_env.spec, scheduled_blob_params.as_ref(), - ); + )); - let result = call::run_call::( + let result = guaranteed_dry_run_with_inspector::( blockchain, - block_env, state.as_ref(), cfg_env, - transaction, + transaction.clone(), + &block_env, &custom_precompiles, - &mut inspector, + &mut DualInspector::new(&mut debug_inspector, &mut evm_observer), )?; let EvmObserver { @@ -1814,10 +1818,19 @@ where .map_err(ProviderError::OnCollectedCoverageCallback)?; } - let debug_result = - execution_result_to_debug_result(result, trace_collector, eip3155_tracer); + let mut database = WrapDatabaseRef(DatabaseComponents { + blockchain, + state: state.as_ref(), + }); + + let geth_trace = debug_inspector + .get_result(None, &transaction, &block_env, &result, &mut database) + .map_err(DebugTraceError::from_debug_inspector_result_error)?; - Ok(debug_result) + Ok(DebugTraceResultWithTraces { + result: geth_trace, + traces: trace_collector.into_traces(), + }) })? } @@ -2514,7 +2527,7 @@ where pub fn debug_trace_transaction( &mut self, transaction_hash: &B256, - trace_config: DebugTraceConfig, + tracing_options: GethDebugTracingOptions, ) -> Result< DebugTraceResultWithTraces, ProviderErrorForChainSpec, @@ -2552,7 +2565,7 @@ where blockchain, state.clone(), cfg_env, - trace_config, + tracing_options, block_env, transactions, transaction_hash, diff --git a/crates/edr_provider/src/data/call.rs b/crates/edr_provider/src/data/call.rs index c198c20bbc..ec6d54cd79 100644 --- a/crates/edr_provider/src/data/call.rs +++ b/crates/edr_provider/src/data/call.rs @@ -13,10 +13,21 @@ use edr_state_api::{State, StateError}; use crate::{error::ProviderErrorForChainSpec, ProviderError}; +/// A wrapper around a block environment that forces the base fee to be zero. +/// +/// This is required to mimick Geth's behaviour, as its call requests use a base +/// fee of zero. pub(super) struct BlockEnvWithZeroBaseFee { inner: BlockEnvT, } +impl BlockEnvWithZeroBaseFee { + /// Creates a new instance wrapping the provided block environment. + pub fn new(inner: BlockEnvT) -> Self { + Self { inner } + } +} + impl BlockEnvTrait for BlockEnvWithZeroBaseFee { fn number(&self) -> U256 { self.inner.number() diff --git a/crates/edr_provider/src/debug_trace.rs b/crates/edr_provider/src/debug_trace.rs index e820e811c6..980e5f0940 100644 --- a/crates/edr_provider/src/debug_trace.rs +++ b/crates/edr_provider/src/debug_trace.rs @@ -1,44 +1,35 @@ -use std::{collections::HashMap, fmt::Debug}; +use std::fmt::Debug; +use alloy_rpc_types_trace::geth::{GethDebugTracingOptions, GethTrace}; +use edr_block_builder_api::{DatabaseComponents, WrapDatabaseRef}; use edr_block_header::BlockHeader; use edr_blockchain_api::{r#dyn::DynBlockchainError, BlockHashByNumber}; use edr_chain_spec::{ ChainSpec, EvmSpecId, ExecutableTransaction as _, HaltReasonTrait, TransactionValidation, }; use edr_chain_spec_block::BlockChainSpec; -use edr_chain_spec_evm::{ - interpreter::{ - CallInputs, CallOutcome, CreateInputs, CreateOutcome, EthInterpreter, InputsTr as _, - Interpreter, InterpreterResult, Jumps as _, - }, - result::{ExecutionResult, ExecutionResultAndState}, - BlockEnvTrait as _, CfgEnv, ContextTrait, DatabaseComponentError, Inspector, JournalEntry, - JournalTrait as _, TransactionError, -}; +use edr_chain_spec_evm::{BlockEnvTrait as _, CfgEnv, DatabaseComponentError, TransactionError}; use edr_evm::{dry_run_with_inspector, run}; -use edr_primitives::{ - bytecode::opcode::{self, OpCode}, - hex, Address, Bytes, B256, U256, -}; +use edr_primitives::{B256, U256}; use edr_runtime::inspector::DualInspector; use edr_state_api::{DynState, StateError}; -use edr_tracing::{Trace, TraceCollector}; -use revm_inspector::JournalExt; +use edr_tracing::Trace; +use revm_inspectors::tracing::{DebugInspector, DebugInspectorError, MuxError, TransactionContext}; use crate::{ + error::{JsonRpcError, INTERNAL_ERROR, INVALID_PARAMS}, observability::{EvmObserver, EvmObserverConfig}, - utils::u256_to_padded_hex, }; /// Get trace output for `debug_traceTransaction` #[cfg_attr(feature = "tracing", tracing::instrument(skip_all))] #[allow(clippy::too_many_arguments)] -pub fn debug_trace_transaction<'header, ChainSpecT: BlockChainSpec>( +pub fn debug_trace_transaction<'header, ChainSpecT: BlockChainSpec>( blockchain: &dyn BlockHashByNumber, // Take ownership of the state so that we can apply throw-away modifications on it mut state: Box, evm_config: CfgEnv, - trace_config: DebugTraceConfig, + tracing_options: GethDebugTracingOptions, block: ChainSpecT::BlockEnv<'header, BlockHeader>, transactions: Vec, transaction_hash: &B256, @@ -56,21 +47,27 @@ pub fn debug_trace_transaction<'header, ChainSpecT: BlockChainSpec>( } let block_number = block.number(); - for transaction in transactions { + let block_hash = blockchain + .block_hash_by_number(block_number.try_into().expect("block number too large")) + .map_err(DebugTraceError::Blockchain)?; + + for (transaction_index, transaction) in transactions.into_iter().enumerate() { if transaction.transaction_hash() == transaction_hash { - let mut eip3155_tracer = TracerEip3155::new(trace_config); + let mut debug_inspector = DebugInspector::new(tracing_options) + .map_err(DebugTraceError::from_debug_inspector_creation_error)?; + let mut evm_observer = EvmObserver::new(observer_config); - let ExecutionResultAndState { result, .. } = - dry_run_with_inspector::( - blockchain, - state.as_ref(), - evm_config, - transaction, - &block, - &edr_primitives::HashMap::default(), - &mut DualInspector::new(&mut eip3155_tracer, &mut evm_observer), - )?; + let transaction_hash = *transaction.transaction_hash(); + let result_and_state = dry_run_with_inspector::( + blockchain, + state.as_ref(), + evm_config, + transaction.clone(), + &block, + &edr_primitives::HashMap::default(), + &mut DualInspector::new(&mut debug_inspector, &mut evm_observer), + )?; let EvmObserver { code_coverage, @@ -85,11 +82,29 @@ pub fn debug_trace_transaction<'header, ChainSpecT: BlockChainSpec>( .map_err(DebugTraceError::OnCollectedCoverageCallback)?; } - return Ok(execution_result_to_debug_result( - result, - trace_collector, - eip3155_tracer, - )); + let mut database = WrapDatabaseRef(DatabaseComponents { + blockchain, + state: state.as_ref(), + }); + + let geth_trace = debug_inspector + .get_result( + Some(TransactionContext { + block_hash: Some(block_hash), + tx_index: Some(transaction_index), + tx_hash: Some(transaction_hash), + }), + &transaction, + &block, + &result_and_state, + &mut database, + ) + .map_err(DebugTraceError::from_debug_inspector_result_error)?; + + return Ok(DebugTraceResultWithTraces { + result: geth_trace, + traces: trace_collector.into_traces(), + }); } else { run::( blockchain, @@ -108,51 +123,6 @@ pub fn debug_trace_transaction<'header, ChainSpecT: BlockChainSpec>( }) } -/// Convert an `ExecutionResult` to a `DebugTraceResult`. -pub fn execution_result_to_debug_result( - execution_result: ExecutionResult, - raw_tracer: TraceCollector, - eip3155_tracer: TracerEip3155, -) -> DebugTraceResultWithTraces { - let traces = raw_tracer.into_traces(); - - let result = match execution_result { - ExecutionResult::Success { - gas_used, output, .. - } => DebugTraceResult { - pass: true, - gas_used, - output: Some(output.into_data()), - logs: eip3155_tracer.logs, - }, - ExecutionResult::Revert { gas_used, output } => DebugTraceResult { - pass: false, - gas_used, - output: Some(output), - logs: eip3155_tracer.logs, - }, - ExecutionResult::Halt { gas_used, .. } => DebugTraceResult { - pass: false, - gas_used, - output: None, - logs: eip3155_tracer.logs, - }, - }; - - DebugTraceResultWithTraces { result, traces } -} - -/// Config options for `debug_traceTransaction` -#[derive(Debug, Default, Clone)] -pub struct DebugTraceConfig { - /// Disable storage trace. - pub disable_storage: bool, - /// Disable memory trace. - pub disable_memory: bool, - /// Disable stack trace. - pub disable_stack: bool, -} - /// Helper type for a chain-specific [`DebugTraceError`]. pub type DebugTraceErrorForChainSpec = DebugTraceError< <::SignedTransaction as TransactionValidation>::ValidationError, @@ -161,6 +131,9 @@ pub type DebugTraceErrorForChainSpec = DebugTraceError< /// Debug trace error. #[derive(Debug, thiserror::Error)] pub enum DebugTraceError { + /// Blockchain error. + #[error(transparent)] + Blockchain(DynBlockchainError), /// Invalid hardfork spec argument. #[error( "Invalid spec id: {spec_id:?}. `debug_traceTransaction` is not supported prior to Spurious Dragon" @@ -169,6 +142,9 @@ pub enum DebugTraceError { /// The hardfork. spec_id: EvmSpecId, }, + /// Invalid tracer configuration + #[error("invalid tracer config")] + InvalidTracerConfig, /// Invalid transaction hash argument. #[error("Transaction hash {transaction_hash} not found in block {block_number}")] InvalidTransactionHash { @@ -177,9 +153,18 @@ pub enum DebugTraceError { /// The block number. block_number: U256, }, + /// JS tracer is not enabled + #[error("JS Tracer is not enabled")] + JsTracerNotEnabled, + /// Error from `MuxInspector` + #[error(transparent)] + MuxInspector(#[from] MuxError), /// An error occurred while invoking a `SyncOnCollectedCoverageCallback`. #[error(transparent)] OnCollectedCoverageCallback(Box), + /// State error. + #[error(transparent)] + State(StateError), /// Transaction error. #[error(transparent)] TransactionError( @@ -189,227 +174,71 @@ pub enum DebugTraceError { TransactionValidationErrorT, >, ), + /// Unsupported tracer + #[error("unsupported tracer")] + UnsupportedTracer, } -/// Result of a `debug_traceTransaction` call. -#[derive(Debug, Clone, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct DebugTraceResult { - /// Whether transaction was executed successfully. - pub pass: bool, - /// All gas used by the transaction. - pub gas_used: u64, - /// Return values of the function. - pub output: Option, - /// The EIP-3155 debug logs. - #[serde(rename = "structLogs")] - pub logs: Vec, -} - -/// Result of a `debug_traceTransaction` call with traces. -pub struct DebugTraceResultWithTraces { - /// The result of the transaction. - pub result: DebugTraceResult, - /// The raw traces of the debugged transaction. - pub traces: Vec>, -} - -/// The output of an EIP-3155 trace. -/// The required fields match except for -/// `returnData` and `refund` which are not used currently by Hardhat. -/// The `opName`, `error`, `memory` and `storage` optional fields are supported -/// as well. -#[derive(Debug, Clone, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct DebugTraceLogItem { - /// Program Counter - pub pc: u64, - /// Op code - pub op: u8, - /// Gas left before executing this operation as hex number. - pub gas: String, - /// Gas cost of this operation as hex number. - pub gas_cost: String, - /// Array of all values (hex numbers) on the stack - #[serde(skip_serializing_if = "Option::is_none")] - pub stack: Option>, - /// Depth of the call stack - pub depth: u64, - /// Size of memory array. - pub mem_size: u64, - /// Name of the operation. - pub op_name: String, - /// Description of an error. - #[serde(skip_serializing_if = "Option::is_none")] - pub error: Option, - /// Array of all allocated values as hex strings. - #[serde(skip_serializing_if = "Option::is_none")] - pub memory: Option>, - /// Map of all stored values with keys and values encoded as hex strings. - #[serde(skip_serializing_if = "Option::is_none")] - pub storage: Option>, -} - -/// An EIP-3155 compatible EVM tracer. -#[derive(Debug)] -pub struct TracerEip3155 { - config: DebugTraceConfig, - logs: Vec, - contract_address: Address, - gas_remaining: u64, - memory: Vec, - mem_size: usize, - opcode: u8, - pc: usize, - stack: Vec, - // Contract-specific storage - storage: HashMap>, -} - -impl TracerEip3155 { - /// Create a new tracer. - pub fn new(config: DebugTraceConfig) -> Self { - Self { - config, - logs: Vec::default(), - contract_address: Address::default(), - stack: Vec::new(), - pc: 0, - opcode: 0, - gas_remaining: 0, - memory: Vec::default(), - mem_size: 0, - storage: HashMap::default(), +impl DebugTraceError { + /// Converts from a `DebugInspectorError` that occurs when calling + /// `DebugInspector::new`. + pub fn from_debug_inspector_creation_error(error: DebugInspectorError) -> Self { + match error { + DebugInspectorError::InvalidTracerConfig => DebugTraceError::InvalidTracerConfig, + DebugInspectorError::JsTracerNotEnabled => DebugTraceError::JsTracerNotEnabled, + DebugInspectorError::MuxInspector(error) => DebugTraceError::MuxInspector(error), + DebugInspectorError::UnsupportedTracer => DebugTraceError::UnsupportedTracer, + DebugInspectorError::Database(_) => { + unreachable!("Database errors should not occur while calling `DebugInspector::new`") + } } } - fn on_inner_frame_result(&mut self, result: &InterpreterResult) { - self.gas_remaining = if result.result.is_error() { - 0 - } else { - result.gas.remaining() - }; + /// Converts from a `DebugInspectorError` that occurs when calling + /// `DebugInspector::get_result`. + pub fn from_debug_inspector_result_error( + error: DebugInspectorError>, + ) -> Self { + match error { + DebugInspectorError::Database(DatabaseComponentError::Blockchain(error)) => { + DebugTraceError::Blockchain(error) + } + DebugInspectorError::Database(DatabaseComponentError::State(error)) => { + DebugTraceError::State(error) + } + DebugInspectorError::InvalidTracerConfig + | DebugInspectorError::JsTracerNotEnabled + | DebugInspectorError::MuxInspector(_) + | DebugInspectorError::UnsupportedTracer => { + unreachable!( + "These `DebugInspectorError`s should not occur while calling `DebugInspector::::get_result`" + ) + } + } } } -impl> Inspector for TracerEip3155 { - fn call_end( - &mut self, - _context: &mut ContextT, - _inputs: &CallInputs, - outcome: &mut CallOutcome, - ) { - self.on_inner_frame_result(&outcome.result); - } - - fn create_end( - &mut self, - _context: &mut ContextT, - _inputs: &CreateInputs, - outcome: &mut CreateOutcome, - ) { - self.on_inner_frame_result(&outcome.result); - } - - fn step(&mut self, interpreter: &mut Interpreter, _context: &mut ContextT) { - self.contract_address = interpreter.input.target_address(); - self.gas_remaining = interpreter.gas.remaining(); - - if !self.config.disable_stack { - self.stack.clone_from(interpreter.stack.data()); - } - - let shared_memory = &interpreter.memory; - if !self.config.disable_memory { - self.memory = shared_memory.context_memory().to_vec(); +impl JsonRpcError for DebugTraceError { + fn error_code(&self) -> i16 { + match self { + DebugTraceError::InvalidTracerConfig + | DebugTraceError::InvalidTransactionHash { .. } + | DebugTraceError::JsTracerNotEnabled + | DebugTraceError::MuxInspector(_) + | DebugTraceError::UnsupportedTracer => INVALID_PARAMS, + DebugTraceError::InvalidSpecId { .. } + | DebugTraceError::OnCollectedCoverageCallback(_) + | DebugTraceError::Blockchain(_) + | DebugTraceError::State(_) + | DebugTraceError::TransactionError(_) => INTERNAL_ERROR, } - - self.mem_size = shared_memory.context_memory().len(); - - self.opcode = interpreter.bytecode.opcode(); - self.pc = interpreter.bytecode.pc(); } +} - fn step_end(&mut self, interpreter: &mut Interpreter, context: &mut ContextT) { - let journal = context.journal(); - let depth = journal.depth() as u64; - - let stack = if self.config.disable_stack { - None - } else { - Some( - self.stack - .iter() - .map(u256_to_padded_hex) - .collect::>(), - ) - }; - - let memory = if self.config.disable_memory { - None - } else { - Some(self.memory.chunks(32).map(hex::encode).collect()) - }; - - let storage = if self.config.disable_storage { - None - } else { - if matches!(self.opcode, opcode::SLOAD | opcode::SSTORE) { - let last_entry = journal.journal().last(); - - if let Some( - JournalEntry::StorageChanged { address, key, .. } - | JournalEntry::StorageWarmed { address, key }, - ) = last_entry - { - let value = journal - .evm_state() - .get(address) - .expect("address should exist in journal state") - .storage - .get(key) - .expect("storage key should exist") - .present_value(); - let contract_storage = self.storage.entry(self.contract_address).or_default(); - contract_storage.insert(u256_to_padded_hex(key), u256_to_padded_hex(&value)); - } - } - Some( - self.storage - .get(&self.contract_address) - .cloned() - .unwrap_or_default(), - ) - }; - - let mut error = None; - let op_name = OpCode::new(self.opcode).map_or_else( - || { - // Matches message from Hardhat - // https://github.com/NomicFoundation/hardhat/blob/37c5c5845969b15995cc96cb6bd0596977f8b1f8/packages/hardhat-core/src/internal/hardhat-network/stack-traces/vm-debug-tracer.ts#L452 - let fallback = format!("opcode 0x${:x} not defined", self.opcode); - error = Some(fallback.clone()); - fallback - }, - |opcode| opcode.to_string(), - ); - - let gas_cost = self - .gas_remaining - .saturating_sub(interpreter.gas.remaining()); - let log_item = DebugTraceLogItem { - pc: self.pc as u64, - op: self.opcode, - gas: format!("0x{:x}", self.gas_remaining), - gas_cost: format!("0x{gas_cost:x}"), - stack, - depth, - mem_size: self.mem_size as u64, - op_name, - error, - memory, - storage, - }; - self.logs.push(log_item); - } +/// Result of a `debug_traceTransaction` call with traces. +pub struct DebugTraceResultWithTraces { + /// The result of the transaction. + pub result: GethTrace, + /// The raw traces of the debugged transaction. + pub traces: Vec>, } diff --git a/crates/edr_provider/src/error.rs b/crates/edr_provider/src/error.rs index 5b9f8c625e..b71abb1ad8 100644 --- a/crates/edr_provider/src/error.rs +++ b/crates/edr_provider/src/error.rs @@ -33,6 +33,16 @@ use crate::{ ProviderSpec, }; +pub(crate) const INVALID_INPUT: i16 = -32000; +pub(crate) const INTERNAL_ERROR: i16 = -32603; +pub(crate) const INVALID_PARAMS: i16 = -32602; + +/// Trait for errors that can be converted to JSON-RPC errors. +pub trait JsonRpcError { + /// Returns the JSON-RPC error code. + fn error_code(&self) -> i16; +} + /// Helper type for a chain-specific [`CreationError`]. pub type CreationErrorForChainSpec = CreationError< ::GenesisBlockCreationError, @@ -434,10 +444,6 @@ impl< TransactionValidationErrorT, >, ) -> Self { - const INVALID_INPUT: i16 = -32000; - const INTERNAL_ERROR: i16 = -32603; - const INVALID_PARAMS: i16 = -32602; - #[allow(clippy::match_same_arms)] let code = match &value { ProviderError::AccountOverrideConversionError(_) => INVALID_INPUT, @@ -450,7 +456,7 @@ impl< ProviderError::BlobMemPoolUnsupported => INVALID_INPUT, ProviderError::Blockchain(_) => INVALID_INPUT, ProviderError::Creation(_) => INVALID_INPUT, - ProviderError::DebugTrace(_) => INTERNAL_ERROR, + ProviderError::DebugTrace(error) => error.error_code(), ProviderError::Eip4844CallRequestUnsupported => INVALID_INPUT, ProviderError::Eip4844TransactionMissingReceiver => INVALID_INPUT, ProviderError::Eip4844TransactionUnsupported => INVALID_INPUT, diff --git a/crates/edr_provider/src/requests/debug.rs b/crates/edr_provider/src/requests/debug.rs index 75c76da404..7ed5d3a7db 100644 --- a/crates/edr_provider/src/requests/debug.rs +++ b/crates/edr_provider/src/requests/debug.rs @@ -1,12 +1,12 @@ +use alloy_rpc_types_trace::geth::{GethDebugTracingOptions, GethTrace}; use edr_chain_spec::TransactionValidation; use edr_eth::BlockSpec; use edr_primitives::B256; use edr_runtime::overrides::StateOverrides; -use serde::{Deserialize, Deserializer}; use crate::{ data::ProviderData, - debug_trace::{DebugTraceResult, DebugTraceResultWithTraces}, + debug_trace::DebugTraceResultWithTraces, requests::eth::{resolve_block_spec_for_call_request, resolve_call_request}, spec::SyncProviderSpec, time::TimeSinceEpoch, @@ -22,13 +22,10 @@ pub fn handle_debug_trace_transaction< >( data: &mut ProviderData, transaction_hash: B256, - config: Option, -) -> ProviderResultWithTraces { + tracing_options: Option, +) -> ProviderResultWithTraces { let DebugTraceResultWithTraces { result, traces } = data - .debug_trace_transaction( - &transaction_hash, - config.map(Into::into).unwrap_or_default(), - ) + .debug_trace_transaction(&transaction_hash, tracing_options.unwrap_or_default()) .map_err(|error| match error { ProviderError::InvalidTransactionHash(tx_hash) => ProviderError::InvalidInput(format!( "Unable to find a block containing transaction {tx_hash}" @@ -43,8 +40,8 @@ pub fn handle_debug_trace_call( data: &mut ProviderData, call_request: ChainSpecT::RpcCallRequest, block_spec: Option, - config: Option, -) -> ProviderResultWithTraces + tracing_options: Option, +) -> ProviderResultWithTraces where ChainSpecT: SyncProviderSpec< TimerT, @@ -60,73 +57,8 @@ where let DebugTraceResultWithTraces { result, traces } = data.debug_trace_call( transaction, &block_spec, - config.map(Into::into).unwrap_or_default(), + tracing_options.unwrap_or_default(), )?; Ok((result, traces)) } - -/// Config options for `debug_traceTransaction` -#[derive(Clone, Debug, Default, Eq, PartialEq, serde::Deserialize, serde::Serialize)] -#[serde(rename_all = "camelCase")] -pub struct DebugTraceConfig { - /// Which tracer to use. This argument is currently unsupported. - #[serde(skip_serializing_if = "Option::is_none")] - #[serde(deserialize_with = "deserialize_tracer")] - #[serde(default)] - pub tracer: Option, - /// Disable storage trace. - #[serde(skip_serializing_if = "Option::is_none")] - #[serde(default)] - pub disable_storage: Option, - /// Disable memory trace. - #[serde(skip_serializing_if = "Option::is_none")] - #[serde(default)] - pub disable_memory: Option, - /// Disable stack trace. - #[serde(skip_serializing_if = "Option::is_none")] - #[serde(default)] - pub disable_stack: Option, -} - -#[derive(Clone, Debug, Default, Eq, PartialEq, serde::Deserialize, serde::Serialize)] -pub enum Tracer { - #[default] - #[serde(rename = "default")] - Default, -} - -fn deserialize_tracer<'de, DeserializerT>( - deserializer: DeserializerT, -) -> Result, DeserializerT::Error> -where - DeserializerT: Deserializer<'de>, -{ - const HARDHAT_ERROR: &str = "Hardhat currently only supports the default tracer, so no tracer parameter should be passed."; - - let tracer = Option::::deserialize(deserializer) - .map_err(|_error| serde::de::Error::custom(HARDHAT_ERROR))?; - - if tracer.is_some() { - Err(serde::de::Error::custom(HARDHAT_ERROR)) - } else { - Ok(tracer) - } -} - -impl From for crate::debug_trace::DebugTraceConfig { - fn from(value: DebugTraceConfig) -> Self { - let DebugTraceConfig { - disable_storage, - disable_memory, - disable_stack, - // Tracer argument is not supported by Hardhat - tracer: _, - } = value; - Self { - disable_storage: disable_storage.unwrap_or_default(), - disable_memory: disable_memory.unwrap_or_default(), - disable_stack: disable_stack.unwrap_or_default(), - } - } -} diff --git a/crates/edr_provider/src/requests/methods.rs b/crates/edr_provider/src/requests/methods.rs index 213cd43f0d..56ac3914fd 100644 --- a/crates/edr_provider/src/requests/methods.rs +++ b/crates/edr_provider/src/requests/methods.rs @@ -1,4 +1,5 @@ use alloy_dyn_abi::eip712::TypedData; +use alloy_rpc_types_trace::geth::GethDebugTracingOptions; use derive_where::derive_where; use edr_chain_spec_rpc::RpcChainSpec; use edr_eth::{ @@ -11,7 +12,6 @@ use edr_rpc_eth::StateOverrideOptions; use serde::{Deserialize, Serialize}; use super::serde::{RpcAddress, Timestamp}; -use crate::requests::debug::DebugTraceConfig; mod optional_block_spec { use super::BlockSpec; @@ -284,17 +284,18 @@ pub enum MethodInvocation { #[serde(rename = "evm_snapshot", with = "edr_eth::serde::empty_params")] EvmSnapshot(()), - // `debug_traceTransaction` + // `debug_traceCall` + // TODO: Add support for `GethDebugTracingCallOptions` + // #[serde(rename = "debug_traceCall")] DebugTraceCall( ChainSpecT::RpcCallRequest, #[serde(default)] Option, - #[serde(default)] Option, + #[serde(default)] Option, ), // `debug_traceTransaction` #[serde(rename = "debug_traceTransaction")] - DebugTraceTransaction(B256, #[serde(default)] Option), - + DebugTraceTransaction(B256, #[serde(default)] Option), /// `hardhat_dropTransaction` #[serde(rename = "hardhat_dropTransaction", with = "edr_eth::serde::sequence")] DropTransaction(B256), diff --git a/hardhat-tests/package.json b/hardhat-tests/package.json index 9189df7cb9..75d65aa258 100644 --- a/hardhat-tests/package.json +++ b/hardhat-tests/package.json @@ -38,7 +38,7 @@ "ethereumjs-abi": "^0.6.8", "ethers": "^6.1.0", "fs-extra": "^7.0.1", - "hardhat": "2.26.1", + "hardhat": "2.28.0", "mocha": "^10.0.0", "prettier": "^3.2.5", "rimraf": "^3.0.2", diff --git a/hardhat-tests/test/fixture-debug-traces/elongatedMemoryRegressionTestTrace.ts b/hardhat-tests/test/fixture-debug-traces/elongatedMemoryRegressionTestTrace.ts index d1106a6f6e..c66df44468 100644 --- a/hardhat-tests/test/fixture-debug-traces/elongatedMemoryRegressionTestTrace.ts +++ b/hardhat-tests/test/fixture-debug-traces/elongatedMemoryRegressionTestTrace.ts @@ -1,9 +1,76 @@ import { RpcDebugTraceOutput } from "hardhat/internal/hardhat-network/provider/output"; +// Trace generated using Geth 1.16.7 +// +// Start the Geth dev node with debug API enabled: +// ```bash +// docker run -it --rm -p 8545:8545 -p 8546:8546 ethereum/client-go:stable --dev --http --http.addr 0.0.0.0 --http.api eth,net,debug --ws --ws.addr 0.0.0.0 --ws.api eth,net,debug +// ``` +// +// Add the following code to `scripts/simulate-geth.mts`: +// ```ts +// import * as viem from "viem"; +// +// const url = "http://localhost:8546"; // For WSL: "http://10.0.0.43:8545"; +// const data = `0x3d61000480600b3d3981f35F5F525F`; +// +// const publicClient = viem +// .createPublicClient({ +// transport: viem.http(url), +// }) +// .extend((client) => ({ +// async traceTransaction(args: viem.Hash) { +// return client.request({ +// method: "debug_traceTransaction", +// params: [ +// args, +// { +// enableMemory: true, +// } as any, +// ], +// }); +// }, +// })); +// const walletClient = viem.createWalletClient({ +// transport: viem.http(url), +// }); +// +// const [gethAccount] = await walletClient.getAddresses(); +// +// const gethClient = viem.createWalletClient({ +// transport: viem.http(url), +// account: gethAccount, +// }); +// +// const deploymentTx = await gethClient.sendTransaction({ +// data, +// chain: null, +// }); +// +// const receipt = await publicClient.waitForTransactionReceipt({ +// hash: deploymentTx, +// }); +// +// const contractAddress = receipt.contractAddress; +// const txHash = await gethClient.sendTransaction({ +// to: contractAddress, +// gas: 6_000_000n, +// chain: null, +// }); +// +// const trace = await publicClient.traceTransaction(txHash); +// console.log("Trace result:", JSON.stringify(trace, null, 2)); +// ``` +// +// Run the script with: +// ```bash +// npx tsx scripts/simulate-geth.mts &> debug.txt +// ``` + export const trace: RpcDebugTraceOutput = { gas: 21012, failed: false, - returnValue: "", + returnValue: "0x", structLogs: [ { pc: 0, @@ -12,8 +79,6 @@ export const trace: RpcDebugTraceOutput = { gasCost: 2, depth: 1, stack: [], - memory: [], - storage: {}, }, { pc: 1, @@ -21,11 +86,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5978998, gasCost: 2, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [], - storage: {}, + stack: ["0x0"], }, { pc: 2, @@ -33,14 +94,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5978996, gasCost: 6, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, + stack: ["0x0", "0x0"], }, { pc: 3, @@ -52,7 +106,17 @@ export const trace: RpcDebugTraceOutput = { memory: [ "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, + }, + { + pc: 4, + op: "STOP", + gas: 5978988, + gasCost: 0, + depth: 1, + stack: ["0x0"], + memory: [ + "0000000000000000000000000000000000000000000000000000000000000000", + ], }, ], }; diff --git a/hardhat-tests/test/fixture-debug-traces/mainnetPostLondonTxTrace.ts b/hardhat-tests/test/fixture-debug-traces/mainnetPostLondonTxTrace.ts index 2e9e4803ec..73530a68e5 100644 --- a/hardhat-tests/test/fixture-debug-traces/mainnetPostLondonTxTrace.ts +++ b/hardhat-tests/test/fixture-debug-traces/mainnetPostLondonTxTrace.ts @@ -1,10 +1,13 @@ // This trace belongs to the tx 0xe0b1f8e11eb822107ddc35ce2d944147cc043acf680c39332ee95dd6508d107e // from mainnet. -// It was generated using ArchiveNode. +// It was generated using Alchemy (2025-12-30) // Unlike the other traces, it's casted to any to avoid a "TS2590: Expression // produces a union type that is too complex to represent." error export const trace: any = JSON.parse(` { + "gas": 137858, + "failed": false, + "returnValue": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", "structLogs": [ { "pc": 0, @@ -12,9 +15,7 @@ export const trace: any = JSON.parse(` "gas": 153867, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [], - "storage": {} + "stack": [] }, { "pc": 2, @@ -23,10 +24,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {} + "0x80" + ] }, { "pc": 4, @@ -35,15 +34,9 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 1, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "0x80", + "0x40" + ] }, { "pc": 5, @@ -56,8 +49,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 7, @@ -66,14 +58,13 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 8, @@ -82,15 +73,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x4", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 9, @@ -99,14 +89,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 12, @@ -115,15 +104,14 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002a4" + "0x0", + "0x2a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 13, @@ -136,8 +124,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 15, @@ -146,14 +133,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16, @@ -162,14 +148,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "5ae401dc00000000000000000000000000000000000000000000000000000000" + "0x5ae401dc00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 18, @@ -178,15 +163,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "5ae401dc00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x5ae401dc00000000000000000000000000000000000000000000000000000000", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 19, @@ -195,14 +179,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20, @@ -211,15 +194,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc", + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 25, @@ -228,16 +210,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000009b2c0a37" + "0x5ae401dc", + "0x5ae401dc", + "0x9b2c0a37" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 26, @@ -246,15 +227,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 29, @@ -263,16 +243,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000016e" + "0x5ae401dc", + "0x1", + "0x16e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 366, @@ -281,14 +260,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 367, @@ -297,14 +275,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 368, @@ -313,15 +290,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc", + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 373, @@ -330,16 +306,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x5ae401dc", + "0x5ae401dc", + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 374, @@ -348,15 +323,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 377, @@ -365,16 +339,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000021c" + "0x5ae401dc", + "0x0", + "0x21c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 378, @@ -383,14 +356,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 379, @@ -399,15 +371,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc", + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 384, @@ -416,16 +387,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000571ac8b0" + "0x5ae401dc", + "0x5ae401dc", + "0x571ac8b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 385, @@ -434,15 +404,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 388, @@ -451,16 +420,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001d0" + "0x5ae401dc", + "0x0", + "0x1d0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 389, @@ -469,14 +437,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 390, @@ -485,15 +452,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc", + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 395, @@ -502,16 +468,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000639d71a9" + "0x5ae401dc", + "0x5ae401dc", + "0x639d71a9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 396, @@ -520,15 +485,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 399, @@ -537,16 +501,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001b5" + "0x5ae401dc", + "0x1", + "0x1b5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 437, @@ -555,14 +518,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 438, @@ -571,14 +533,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 439, @@ -587,15 +548,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc", + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 444, @@ -604,16 +564,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000571ac8b0" + "0x5ae401dc", + "0x5ae401dc", + "0x571ac8b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 445, @@ -622,15 +581,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 448, @@ -639,16 +597,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000492" + "0x5ae401dc", + "0x0", + "0x492" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 449, @@ -657,14 +614,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 450, @@ -673,15 +629,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc", + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 455, @@ -690,16 +645,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc", - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc", + "0x5ae401dc", + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 456, @@ -708,15 +662,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 459, @@ -725,16 +678,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000004a5" + "0x5ae401dc", + "0x1", + "0x4a5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1189, @@ -743,14 +695,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1190, @@ -759,14 +710,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc" + "0x5ae401dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1193, @@ -775,15 +725,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x5ae401dc", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1196, @@ -792,16 +741,15 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3" + "0x5ae401dc", + "0x3de", + "0x4b3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1197, @@ -810,17 +758,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1199, @@ -829,18 +776,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1202, @@ -849,19 +795,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000052a7" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x52a7" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21159, @@ -870,18 +815,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21160, @@ -890,18 +834,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21162, @@ -910,19 +853,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21163, @@ -931,20 +873,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21165, @@ -953,21 +894,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21167, @@ -976,22 +916,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21168, @@ -1000,23 +939,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x40", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21169, @@ -1025,24 +963,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x40", + "0x4", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21170, @@ -1051,23 +988,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000001a0" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x40", + "0x1a0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21171, @@ -1076,22 +1012,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21172, @@ -1100,22 +1035,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21175, @@ -1124,23 +1058,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000052bb" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1", + "0x52bb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21179, @@ -1149,21 +1082,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21180, @@ -1172,21 +1104,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21181, @@ -1195,22 +1126,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21182, @@ -1219,22 +1149,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd0903" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x62dd0903" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21183, @@ -1243,22 +1172,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21184, @@ -1267,21 +1195,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21186, @@ -1290,22 +1217,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21187, @@ -1314,23 +1240,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x20", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21188, @@ -1339,22 +1264,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21189, @@ -1363,22 +1287,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21198, @@ -1387,23 +1310,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0xffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21199, @@ -1412,24 +1334,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0xffffffffffffffff", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21200, @@ -1438,23 +1359,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21201, @@ -1463,23 +1383,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21204, @@ -1488,24 +1407,23 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000052d8" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x1", + "0x52d8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21208, @@ -1514,22 +1432,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21209, @@ -1538,22 +1455,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21212, @@ -1562,23 +1478,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21213, @@ -1587,24 +1502,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21214, @@ -1613,25 +1527,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21215, @@ -1640,26 +1553,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x40", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21216, @@ -1668,25 +1580,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21219, @@ -1695,26 +1606,25 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000004e76" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x4e76" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20086, @@ -1723,25 +1633,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20087, @@ -1750,25 +1659,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20089, @@ -1777,26 +1685,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20090, @@ -1805,27 +1712,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20091, @@ -1834,28 +1740,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x0", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20093, @@ -1864,29 +1769,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x0", + "0x1a4", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20094, @@ -1895,30 +1799,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x0", + "0x1a4", + "0x1f", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20095, @@ -1927,29 +1830,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000063" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x0", + "0x1a4", + "0x63" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20096, @@ -1958,28 +1860,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20099, @@ -1988,29 +1889,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004e87" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x0", + "0x1", + "0x4e87" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20103, @@ -2019,27 +1919,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20104, @@ -2048,27 +1947,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20105, @@ -2077,26 +1975,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20106, @@ -2105,27 +2002,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20107, @@ -2134,27 +2030,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20116, @@ -2163,28 +2058,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000ffffffffffffffff" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x1", + "0xffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20117, @@ -2193,29 +2087,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x1", + "0xffffffffffffffff", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20118, @@ -2224,28 +2117,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20119, @@ -2254,28 +2146,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20122, @@ -2284,29 +2175,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004e9e" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x1", + "0x1", + "0x4e9e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20126, @@ -2315,27 +2205,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20127, @@ -2344,27 +2233,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20129, @@ -2373,28 +2261,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20130, @@ -2403,29 +2290,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x1", + "0x20", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20131, @@ -2434,28 +2320,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x0", + "0x1", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20132, @@ -2464,28 +2349,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20133, @@ -2494,27 +2378,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20134, @@ -2523,28 +2406,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20136, @@ -2553,29 +2435,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1", + "0x1a4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20137, @@ -2584,30 +2465,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1", + "0x1a4", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20138, @@ -2616,31 +2496,30 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1", + "0x1a4", + "0x20", + "0x20", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20139, @@ -2649,30 +2528,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1", + "0x1a4", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20140, @@ -2681,31 +2559,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1", + "0x1a4", + "0x20", + "0x20", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20141, @@ -2714,30 +2591,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1", + "0x1a4", + "0x20", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20142, @@ -2746,29 +2622,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1", + "0x1a4", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20143, @@ -2777,28 +2652,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20144, @@ -2807,28 +2681,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20147, @@ -2837,29 +2710,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003fa0" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1", + "0x1", + "0x3fa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16288, @@ -2868,27 +2740,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16289, @@ -2897,27 +2768,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1a4", + "0x44", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16290, @@ -2926,27 +2796,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1", + "0x44", + "0x64", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16291, @@ -2955,26 +2824,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000052e4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x52e4", + "0x1", + "0x44", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16292, @@ -2983,26 +2851,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000052e4" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x64", + "0x1", + "0x44", + "0x52e4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16293, @@ -3011,26 +2878,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000052e4", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x64", + "0x1", + "0x52e4", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16294, @@ -3039,25 +2905,24 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000052e4" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x64", + "0x1", + "0x52e4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21220, @@ -3066,24 +2931,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21221, @@ -3092,24 +2956,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x62dd0903", + "0x0", + "0x0", + "0x40", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21222, @@ -3118,24 +2981,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000062dd0903" + "0x5ae401dc", + "0x3de", + "0x4b3", + "0x1a4", + "0x4", + "0x1", + "0x0", + "0x0", + "0x40", + "0x64", + "0x62dd0903" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21223, @@ -3144,24 +3006,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000004b3" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x1a4", + "0x4", + "0x1", + "0x0", + "0x0", + "0x40", + "0x64", + "0x4b3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21224, @@ -3170,24 +3031,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000004b3", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x1a4", + "0x4", + "0x1", + "0x0", + "0x0", + "0x40", + "0x4b3", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21225, @@ -3196,24 +3056,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000004b3", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x4", + "0x1", + "0x0", + "0x0", + "0x40", + "0x4b3", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21226, @@ -3222,23 +3081,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000004b3" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x4", + "0x1", + "0x0", + "0x0", + "0x40", + "0x4b3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21227, @@ -3247,23 +3105,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000004b3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x4", + "0x4b3", + "0x0", + "0x0", + "0x40", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21228, @@ -3272,23 +3129,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000004b3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x4b3", + "0x0", + "0x0", + "0x40", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21229, @@ -3297,22 +3153,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000004b3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x4b3", + "0x0", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21230, @@ -3321,21 +3176,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000004b3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x4b3", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21231, @@ -3344,20 +3198,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000004b3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x4b3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 21232, @@ -3366,19 +3219,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000004b3" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x4b3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1203, @@ -3387,18 +3239,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1204, @@ -3407,18 +3258,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1207, @@ -3427,19 +3277,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000015bc" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x15bc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5564, @@ -3448,18 +3297,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5565, @@ -3468,18 +3316,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5567, @@ -3488,19 +3335,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5568, @@ -3509,20 +3355,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5569, @@ -3531,21 +3376,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x62dd0903" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5572, @@ -3554,22 +3398,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000015c8" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x62dd0903", + "0x15c8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5575, @@ -3578,23 +3421,22 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000015c8", - "00000000000000000000000000000000000000000000000000000000000033cc" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x62dd0903", + "0x15c8", + "0x33cc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 13260, @@ -3603,22 +3445,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000015c8" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x62dd0903", + "0x15c8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 13261, @@ -3627,22 +3468,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000015c8" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x62dd0903", + "0x15c8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 13262, @@ -3651,23 +3491,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "00000000000000000000000000000000000000000000000000000000000015c8", - "0000000000000000000000000000000000000000000000000000000062dd08ac" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x62dd0903", + "0x15c8", + "0x62dd08ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 13263, @@ -3676,23 +3515,22 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000015c8" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x62dd0903", + "0x62dd08ac", + "0x15c8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5576, @@ -3701,22 +3539,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd08ac" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x62dd0903", + "0x62dd08ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5577, @@ -3725,22 +3562,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000062dd08ac" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x62dd0903", + "0x62dd08ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5578, @@ -3749,21 +3585,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5579, @@ -3772,21 +3607,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5582, @@ -3795,22 +3629,21 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000c33" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x1", + "0xc33" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3123, @@ -3819,20 +3652,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3124, @@ -3841,20 +3673,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3127, @@ -3863,21 +3694,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3128, @@ -3886,22 +3716,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3129, @@ -3910,23 +3739,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3132, @@ -3935,24 +3763,23 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000019ba" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x19ba" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6586, @@ -3961,23 +3788,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6587, @@ -3986,23 +3812,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6589, @@ -4011,24 +3836,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6590, @@ -4037,25 +3861,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6599, @@ -4064,26 +3887,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000ffffffffffffffff" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x1", + "0xffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6600, @@ -4092,27 +3914,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x1", + "0xffffffffffffffff", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6601, @@ -4121,26 +3942,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6602, @@ -4149,27 +3969,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x1", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6603, @@ -4178,27 +3997,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x1", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6606, @@ -4207,28 +4025,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000019d3" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x1", + "0x0", + "0x1", + "0x19d3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6611, @@ -4237,26 +4054,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6612, @@ -4265,26 +4081,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6613, @@ -4293,25 +4108,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6615, @@ -4320,26 +4134,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x1", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6616, @@ -4348,26 +4161,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x1", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6617, @@ -4376,26 +4188,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6618, @@ -4404,27 +4215,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 6619, @@ -4433,30 +4243,27 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x1", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "0000000000000000000000000000000000000000000000000000000000000080" + ] }, { "pc": 6620, @@ -4465,19 +4272,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4485,8 +4292,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6621, @@ -4495,20 +4301,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4516,8 +4322,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6623, @@ -4526,21 +4331,21 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4548,8 +4353,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6624, @@ -4558,20 +4362,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4579,8 +4383,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6626, @@ -4589,21 +4392,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4611,8 +4414,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6627, @@ -4621,20 +4423,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4642,8 +4444,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6628, @@ -4652,21 +4453,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x40", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4674,8 +4475,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6629, @@ -4684,20 +4484,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4705,8 +4505,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6631, @@ -4715,21 +4514,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0xc0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4737,8 +4536,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6632, @@ -4747,19 +4545,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4767,8 +4565,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6633, @@ -4777,20 +4574,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4798,8 +4595,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6634, @@ -4808,20 +4604,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4829,8 +4625,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6637, @@ -4839,21 +4634,21 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001a07" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x0", + "0x1a07" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4861,8 +4656,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6638, @@ -4871,19 +4665,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4891,8 +4685,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6639, @@ -4901,20 +4694,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4922,8 +4715,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6641, @@ -4932,21 +4724,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0x80", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4954,8 +4746,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6642, @@ -4964,20 +4755,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4985,8 +4776,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6643, @@ -4995,20 +4785,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5016,8 +4806,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6645, @@ -5026,21 +4815,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0xa0", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5048,8 +4837,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": {} + ] }, { "pc": 6646, @@ -5058,32 +4846,30 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0xa0", + "0x60", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "0000000000000000000000000000000000000000000000000000000000000001" + ] }, { "pc": 6647, @@ -5092,20 +4878,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5114,8 +4900,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6649, @@ -5124,21 +4909,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0xa0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5147,8 +4932,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6650, @@ -5157,20 +4941,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x1", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5179,8 +4963,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6651, @@ -5189,20 +4972,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0xc0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5211,8 +4994,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6653, @@ -5221,21 +5003,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0xc0", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5244,8 +5026,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6654, @@ -5254,21 +5035,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0xc0", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5277,8 +5058,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6655, @@ -5287,20 +5067,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0xc0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5309,8 +5089,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6656, @@ -5319,20 +5098,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x0", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5341,8 +5120,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6657, @@ -5351,21 +5129,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x0", + "0xc0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5374,8 +5152,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6660, @@ -5384,22 +5161,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000019f2" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x0", + "0xc0", + "0x0", + "0x19f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5408,8 +5185,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6661, @@ -5418,20 +5194,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0x0", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5440,8 +5216,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6662, @@ -5450,20 +5225,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0xc0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5472,8 +5247,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6663, @@ -5482,19 +5256,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5503,8 +5277,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6664, @@ -5513,19 +5286,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5534,8 +5307,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6665, @@ -5544,18 +5316,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x60", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5564,8 +5336,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6666, @@ -5574,18 +5345,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5594,8 +5365,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6667, @@ -5604,17 +5374,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5623,8 +5393,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6669, @@ -5633,18 +5402,18 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5653,8 +5422,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6670, @@ -5663,18 +5431,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5683,8 +5451,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6671, @@ -5693,19 +5460,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5714,8 +5481,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6672, @@ -5724,20 +5490,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5746,8 +5512,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6673, @@ -5756,19 +5521,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5777,8 +5542,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6674, @@ -5787,19 +5551,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5808,8 +5572,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6677, @@ -5818,20 +5581,20 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001b0d" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x1b0d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5840,8 +5603,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6678, @@ -5850,18 +5612,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5870,8 +5632,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6680, @@ -5880,19 +5641,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5901,8 +5662,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6681, @@ -5911,20 +5671,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5933,8 +5693,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6682, @@ -5943,21 +5702,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5966,8 +5725,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6683, @@ -5976,22 +5734,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6000,8 +5758,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6684, @@ -6010,23 +5767,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6035,8 +5792,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6685, @@ -6045,24 +5801,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6071,8 +5827,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6686, @@ -6081,25 +5836,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x1", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6108,8 +5863,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6687, @@ -6118,26 +5872,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x1", + "0x0", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6146,8 +5900,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6688, @@ -6156,25 +5909,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x1", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6183,8 +5936,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6691, @@ -6193,26 +5945,26 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001a25" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x1", + "0x0", + "0x1", + "0x1a25" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6221,8 +5973,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6693, @@ -6231,24 +5982,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6257,8 +6008,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6694, @@ -6267,24 +6017,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6293,8 +6043,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6695, @@ -6303,24 +6052,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6329,8 +6078,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6696, @@ -6339,23 +6087,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6364,8 +6112,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6698, @@ -6374,24 +6121,24 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6400,8 +6147,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6699, @@ -6410,23 +6156,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6435,8 +6181,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6700, @@ -6445,24 +6190,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x0", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6471,8 +6216,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6701, @@ -6481,23 +6225,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6506,8 +6250,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6702, @@ -6516,23 +6259,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6541,8 +6284,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6705, @@ -6551,24 +6293,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000001a37" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x64", + "0x64", + "0x1a37" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6577,8 +6319,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6706, @@ -6587,24 +6328,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6613,8 +6354,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6707, @@ -6623,24 +6363,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6649,8 +6389,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6710, @@ -6659,25 +6398,25 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000005e41" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x5e41" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6686,8 +6425,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24129, @@ -6696,24 +6434,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6722,8 +6460,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24130, @@ -6732,24 +6469,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6758,8 +6495,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24132, @@ -6768,25 +6504,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6795,8 +6531,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24133, @@ -6805,26 +6540,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6833,8 +6568,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24134, @@ -6843,27 +6577,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6872,8 +6606,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24135, @@ -6882,27 +6615,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6911,8 +6644,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24168, @@ -6921,28 +6653,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6951,8 +6683,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24169, @@ -6961,29 +6692,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6992,8 +6723,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24170, @@ -7002,30 +6732,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1", + "0x64", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7034,8 +6764,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24171, @@ -7044,29 +6773,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1", - "0000000000000000000000000000000000000000000000000000000000000140" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1", + "0x140" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7075,8 +6804,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24172, @@ -7085,28 +6813,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000121" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x20", + "0x121" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7115,8 +6843,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24173, @@ -7125,29 +6852,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000121", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x20", + "0x121", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7156,8 +6883,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24174, @@ -7166,28 +6892,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x20", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7196,8 +6922,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24177, @@ -7206,29 +6931,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005e75" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x20", + "0x1", + "0x5e75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7237,8 +6962,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24181, @@ -7247,27 +6971,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7276,8 +7000,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24182, @@ -7286,27 +7009,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7315,8 +7038,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24183, @@ -7325,28 +7047,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x20", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7355,8 +7077,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24184, @@ -7365,27 +7086,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7394,8 +7115,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24185, @@ -7404,28 +7124,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x84", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7434,8 +7154,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24186, @@ -7444,28 +7163,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0x0", + "0x84", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7474,8 +7193,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24187, @@ -7484,28 +7202,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0xe4", + "0x84", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7514,8 +7232,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24188, @@ -7524,27 +7241,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0xe4", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7553,8 +7270,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24197, @@ -7563,28 +7279,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000ffffffffffffffff" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0xe4", + "0x84", + "0xffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7593,8 +7309,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24198, @@ -7603,29 +7318,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0xe4", + "0x84", + "0xffffffffffffffff", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7634,8 +7349,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24199, @@ -7644,28 +7358,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0xe4", + "0x84", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7674,8 +7388,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24200, @@ -7684,28 +7397,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0xe4", + "0x84", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7714,8 +7427,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24203, @@ -7724,29 +7436,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005e8f" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0xe4", + "0x84", + "0x1", + "0x5e8f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7755,8 +7467,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24207, @@ -7765,27 +7476,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0xe4", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7794,8 +7505,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24208, @@ -7804,27 +7514,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0xe4", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7833,8 +7543,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24210, @@ -7843,28 +7552,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0xe4", + "0x84", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7873,8 +7582,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24211, @@ -7883,27 +7591,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0x0", + "0xe4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7912,8 +7620,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24212, @@ -7922,27 +7629,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0xa4", + "0xe4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7951,8 +7658,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24213, @@ -7961,26 +7667,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0xa4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7989,8 +7695,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24214, @@ -7999,27 +7704,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0xa4", + "0xe4", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8028,8 +7733,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24215, @@ -8038,28 +7742,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0xa4", + "0xe4", + "0x1a4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8068,8 +7772,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24216, @@ -8078,28 +7781,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0xa4", + "0xe4", + "0xe4", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8108,8 +7811,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24217, @@ -8118,27 +7820,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0xa4", + "0xe4", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8147,8 +7849,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24218, @@ -8157,28 +7858,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0xa4", + "0xe4", + "0xc0", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8187,8 +7888,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24219, @@ -8197,27 +7897,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0xa4", + "0xe4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8226,8 +7926,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24220, @@ -8236,27 +7935,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0xa4", + "0xe4", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8265,8 +7964,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 24223, @@ -8275,28 +7973,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003fa0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0xa4", + "0xe4", + "0x1", + "0x3fa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8305,8 +8003,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 16288, @@ -8315,26 +8012,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0xa4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8343,8 +8040,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 16289, @@ -8353,26 +8049,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0x64", + "0x64", + "0xa4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8381,8 +8077,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 16290, @@ -8391,26 +8086,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0xe4", + "0x64", + "0xa4", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8419,8 +8114,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 16291, @@ -8429,25 +8123,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a37", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a37", + "0xe4", + "0x64", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8456,8 +8150,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 16292, @@ -8466,25 +8159,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000001a37" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xa4", + "0xe4", + "0x64", + "0x1a37" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8493,8 +8186,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 16293, @@ -8503,25 +8195,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000001a37", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xa4", + "0xe4", + "0x1a37", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8530,8 +8222,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 16294, @@ -8540,24 +8231,24 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000001a37" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xa4", + "0xe4", + "0x1a37" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8566,8 +8257,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6711, @@ -8576,23 +8266,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xa4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8601,8 +8291,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6712, @@ -8611,23 +8300,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xa4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8636,8 +8325,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6714, @@ -8646,24 +8334,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xa4", + "0xe4", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8672,8 +8360,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6715, @@ -8682,24 +8369,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xa4", + "0xe4", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8708,8 +8395,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6718, @@ -8718,25 +8404,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000001a45" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xa4", + "0xe4", + "0xc0", + "0x1a45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8745,8 +8431,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6719, @@ -8755,25 +8440,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xe4", + "0xc0", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8782,8 +8467,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6720, @@ -8792,25 +8476,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0xc0", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8819,8 +8503,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6721, @@ -8829,25 +8512,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0xe4", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8856,8 +8539,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 6724, @@ -8866,26 +8548,26 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000005a10" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0xe4", + "0xc0", + "0x5a10" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8894,8 +8576,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 23056, @@ -8904,25 +8585,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0xe4", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8931,8 +8612,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 23057, @@ -8941,25 +8621,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0xe4", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8968,8 +8648,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 23059, @@ -8978,26 +8657,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0xe4", + "0xc0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9006,8 +8685,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 23060, @@ -9016,27 +8694,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0xe4", + "0xc0", + "0x0", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9045,8 +8723,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 23061, @@ -9055,28 +8732,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0xe4", + "0xc0", + "0x0", + "0xe4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9085,8 +8762,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000060" - ], - "storage": {} + ] }, { "pc": 23062, @@ -9095,29 +8771,29 @@ export const trace: any = JSON.parse(` "gasCost": 51, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0xe4", + "0xc0", + "0x0", + "0xe4", + "0xa4", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9125,17 +8801,8 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "0000000000000000000000000000000000000000000000000000000000000060" + ] }, { "pc": 23063, @@ -9144,26 +8811,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0xe4", + "0xc0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9180,8 +8847,7 @@ export const trace: any = JSON.parse(` "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 23064, @@ -9190,26 +8856,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0x0", + "0xc0", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9226,8 +8892,7 @@ export const trace: any = JSON.parse(` "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 23065, @@ -9236,25 +8901,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0x0", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9271,8 +8936,7 @@ export const trace: any = JSON.parse(` "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 23066, @@ -9281,25 +8945,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0x1a4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9316,8 +8980,7 @@ export const trace: any = JSON.parse(` "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 23067, @@ -9326,26 +8989,26 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0x1a4", + "0x0", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9361,10 +9024,8 @@ export const trace: any = JSON.parse(` "f0f998f200000000000000000000000000000000000000000000000000000000", "00000002000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce", "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", - "33ebe45200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "33ebe45200000000000000000000000000000000000000000000000000000000" + ] }, { "pc": 23068, @@ -9373,24 +9034,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a45", + "0xa4", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9408,8 +9069,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 23069, @@ -9418,24 +9078,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000001a45" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0xa4", + "0x1a45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9453,8 +9113,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 23070, @@ -9463,24 +9122,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000001a45", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0x1a45", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9498,8 +9157,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 23071, @@ -9508,23 +9166,23 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000001a45" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0x1a45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9542,8 +9200,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 6725, @@ -9552,22 +9209,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9585,8 +9242,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 6726, @@ -9595,22 +9251,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9628,8 +9284,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 6728, @@ -9638,23 +9293,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9672,8 +9327,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 6730, @@ -9682,24 +9336,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9717,8 +9371,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 6731, @@ -9727,24 +9380,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0x0", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9762,8 +9415,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 6732, @@ -9772,25 +9424,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0x0", + "0xc0", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9808,8 +9460,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 6733, @@ -9818,26 +9469,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0x0", + "0xc0", + "0xc0", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9855,8 +9506,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 6734, @@ -9865,25 +9515,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0x0", + "0xc0", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9901,8 +9551,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 6735, @@ -9911,26 +9560,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0x0", + "0xc0", + "0xe4", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9948,8 +9597,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 6736, @@ -9958,27 +9606,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0x0", + "0xc0", + "0xe4", + "0xc0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9996,8 +9644,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 6737, @@ -10006,28 +9653,28 @@ export const trace: any = JSON.parse(` "gasCost": 150276, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000025453" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0x0", + "0xc0", + "0xe4", + "0xc0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x25453" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10045,8 +9692,7 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 0, @@ -10054,9 +9700,7 @@ export const trace: any = JSON.parse(` "gas": 150176, "gasCost": 3, "depth": 2, - "stack": [], - "memory": [], - "storage": {} + "stack": [] }, { "pc": 2, @@ -10065,10 +9709,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {} + "0x80" + ] }, { "pc": 4, @@ -10077,15 +9719,9 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 2, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "0x80", + "0x40" + ] }, { "pc": 5, @@ -10098,8 +9734,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 7, @@ -10108,14 +9743,13 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 8, @@ -10124,15 +9758,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 9, @@ -10141,14 +9774,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 12, @@ -10157,15 +9789,14 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002a4" + "0x0", + "0x2a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 13, @@ -10178,8 +9809,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 15, @@ -10188,14 +9818,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16, @@ -10204,14 +9833,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "472b43f300000000000000000000000000000000000000000000000000000000" + "0x472b43f300000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 18, @@ -10220,15 +9848,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "472b43f300000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x472b43f300000000000000000000000000000000000000000000000000000000", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 19, @@ -10237,14 +9864,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20, @@ -10253,15 +9879,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3", + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 25, @@ -10270,16 +9895,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000009b2c0a37" + "0x472b43f3", + "0x472b43f3", + "0x9b2c0a37" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 26, @@ -10288,15 +9912,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 29, @@ -10305,16 +9928,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000016e" + "0x472b43f3", + "0x1", + "0x16e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 366, @@ -10323,14 +9945,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 367, @@ -10339,14 +9960,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 368, @@ -10355,15 +9975,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3", + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 373, @@ -10372,16 +9991,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3", + "0x472b43f3", + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 374, @@ -10390,15 +10008,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 377, @@ -10407,16 +10024,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000021c" + "0x472b43f3", + "0x0", + "0x21c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 378, @@ -10425,14 +10041,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 379, @@ -10441,15 +10056,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3", + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 384, @@ -10458,16 +10072,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000571ac8b0" + "0x472b43f3", + "0x472b43f3", + "0x571ac8b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 385, @@ -10476,15 +10089,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 388, @@ -10493,16 +10105,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001d0" + "0x472b43f3", + "0x1", + "0x1d0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 464, @@ -10511,14 +10122,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 465, @@ -10527,14 +10137,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 466, @@ -10543,15 +10152,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3", + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 471, @@ -10560,16 +10168,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000049616997" + "0x472b43f3", + "0x472b43f3", + "0x49616997" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 472, @@ -10578,15 +10185,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 475, @@ -10595,16 +10201,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x1", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 513, @@ -10613,14 +10218,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 514, @@ -10629,14 +10233,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 515, @@ -10645,15 +10248,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3", + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 520, @@ -10662,16 +10264,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3", + "0x472b43f3", + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 521, @@ -10680,15 +10281,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 524, @@ -10697,16 +10297,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000424" + "0x472b43f3", + "0x1", + "0x424" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1060, @@ -10715,14 +10314,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1061, @@ -10731,14 +10329,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3" + "0x472b43f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1064, @@ -10747,15 +10344,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367" + "0x472b43f3", + "0x367" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1067, @@ -10764,16 +10360,15 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432" + "0x472b43f3", + "0x367", + "0x432" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1068, @@ -10782,17 +10377,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x432", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1070, @@ -10801,18 +10395,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1073, @@ -10821,19 +10414,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000005885" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x5885" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22661, @@ -10842,18 +10434,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22662, @@ -10862,18 +10453,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22664, @@ -10882,19 +10472,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22665, @@ -10903,20 +10492,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22667, @@ -10925,21 +10513,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22668, @@ -10948,22 +10535,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22670, @@ -10972,23 +10558,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22672, @@ -10997,24 +10582,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22673, @@ -11023,25 +10607,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x80", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22674, @@ -11050,26 +10633,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x80", + "0x4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22675, @@ -11078,25 +10660,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x80", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22676, @@ -11105,24 +10686,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22677, @@ -11131,24 +10711,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22680, @@ -11157,25 +10736,24 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000589c" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1", + "0x589c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22684, @@ -11184,23 +10762,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22685, @@ -11209,23 +10786,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22686, @@ -11234,24 +10810,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22687, @@ -11260,24 +10835,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22688, @@ -11286,24 +10860,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22689, @@ -11312,23 +10885,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22691, @@ -11337,24 +10909,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22692, @@ -11363,25 +10934,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22693, @@ -11390,24 +10960,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x0", + "0x0", + "0x0", + "0x0", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22694, @@ -11416,24 +10985,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x0", + "0x0", + "0x0", + "0x0", + "0x34a6e670d07a930315acfa2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22695, @@ -11442,24 +11010,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22696, @@ -11468,23 +11035,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22698, @@ -11493,24 +11059,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22699, @@ -11519,25 +11084,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x40", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22700, @@ -11546,24 +11110,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22701, @@ -11572,24 +11135,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22710, @@ -11598,25 +11160,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000ffffffffffffffff" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0xffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22711, @@ -11625,26 +11186,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22712, @@ -11653,25 +11213,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22713, @@ -11680,25 +11239,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22716, @@ -11707,26 +11265,25 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000058c0" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x1", + "0x58c0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22720, @@ -11735,24 +11292,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22721, @@ -11761,24 +11317,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22724, @@ -11787,25 +11342,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22725, @@ -11814,26 +11368,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22726, @@ -11842,27 +11395,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22727, @@ -11871,28 +11423,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x80", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22728, @@ -11901,27 +11452,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22731, @@ -11930,28 +11480,27 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000004e76" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x4e76" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20086, @@ -11960,27 +11509,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20087, @@ -11989,27 +11537,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20089, @@ -12018,28 +11565,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20090, @@ -12048,29 +11594,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20091, @@ -12079,30 +11624,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x0", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20093, @@ -12111,31 +11655,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x0", + "0xe4", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20094, @@ -12144,32 +11687,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x0", + "0xe4", + "0x1f", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20095, @@ -12178,31 +11720,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000a3" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x0", + "0xe4", + "0xa3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20096, @@ -12211,30 +11752,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20099, @@ -12243,31 +11783,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004e87" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x0", + "0x1", + "0x4e87" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20103, @@ -12276,29 +11815,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20104, @@ -12307,29 +11845,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20105, @@ -12338,28 +11875,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20106, @@ -12368,29 +11904,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20107, @@ -12399,29 +11934,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20116, @@ -12430,30 +11964,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000000000000000000000000000ffffffffffffffff" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x2", + "0xffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20117, @@ -12462,31 +11995,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x2", + "0xffffffffffffffff", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20118, @@ -12495,30 +12027,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20119, @@ -12527,30 +12058,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20122, @@ -12559,31 +12089,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004e9e" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x2", + "0x1", + "0x4e9e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20126, @@ -12592,29 +12121,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20127, @@ -12623,29 +12151,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20129, @@ -12654,30 +12181,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x2", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20130, @@ -12686,31 +12212,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x2", + "0x20", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20131, @@ -12719,30 +12244,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0x0", + "0x2", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20132, @@ -12751,30 +12275,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20133, @@ -12783,29 +12306,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20134, @@ -12814,30 +12336,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20136, @@ -12846,31 +12367,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2", + "0xe4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20137, @@ -12879,32 +12399,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2", + "0xe4", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20138, @@ -12913,33 +12432,32 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2", + "0xe4", + "0x20", + "0x20", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20139, @@ -12948,32 +12466,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2", + "0xe4", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20140, @@ -12982,33 +12499,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2", + "0xe4", + "0x20", + "0x40", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20141, @@ -13017,32 +12533,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2", + "0xe4", + "0x20", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20142, @@ -13051,31 +12566,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2", + "0xe4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20143, @@ -13084,30 +12598,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20144, @@ -13116,30 +12629,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20147, @@ -13148,31 +12660,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003fa0" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2", + "0x1", + "0x3fa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16288, @@ -13181,29 +12692,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16289, @@ -13212,29 +12722,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0xe4", + "0x84", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16290, @@ -13243,29 +12752,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0x2", + "0x84", + "0xa4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16291, @@ -13274,28 +12782,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000058cc", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x58cc", + "0x2", + "0x84", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16292, @@ -13304,28 +12811,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000058cc" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0xa4", + "0x2", + "0x84", + "0x58cc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16293, @@ -13334,28 +12840,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000058cc", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0xa4", + "0x2", + "0x58cc", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16294, @@ -13364,27 +12869,26 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000058cc" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0xa4", + "0x2", + "0x58cc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22732, @@ -13393,26 +12897,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22733, @@ -13421,26 +12924,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22734, @@ -13449,26 +12951,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x0", + "0x0", + "0x0", + "0x80", + "0x2", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22735, @@ -13477,26 +12978,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x0", + "0x0", + "0x80", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22736, @@ -13505,25 +13005,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x0", + "0x0", + "0x80", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22737, @@ -13532,25 +13031,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22738, @@ -13559,24 +13057,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22739, @@ -13585,23 +13082,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22741, @@ -13610,24 +13106,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22742, @@ -13636,25 +13131,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0x60", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22743, @@ -13663,24 +13157,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22744, @@ -13689,24 +13182,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22747, @@ -13715,25 +13207,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22748, @@ -13742,26 +13233,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 22751, @@ -13770,27 +13260,26 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000005f52" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x5f52" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24402, @@ -13799,26 +13288,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24403, @@ -13827,26 +13315,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24424, @@ -13855,27 +13342,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24425, @@ -13884,28 +13370,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24426, @@ -13914,27 +13399,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24427, @@ -13943,28 +13427,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24428, @@ -13973,27 +13456,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24431, @@ -14002,28 +13484,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1479" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5241, @@ -14032,26 +13513,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5242, @@ -14060,26 +13540,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5243, @@ -14088,25 +13567,24 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000050ca" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x50ca" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20682, @@ -14115,24 +13593,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20683, @@ -14141,24 +13618,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20684, @@ -14167,25 +13643,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20685, @@ -14194,25 +13669,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20686, @@ -14221,24 +13695,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20687, @@ -14247,23 +13720,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20688, @@ -14272,23 +13744,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2" + "0x472b43f3", + "0x367", + "0x432", + "0xe4", + "0x4", + "0x4234167", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x2", + "0x34a6e670d07a930315acfa2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20689, @@ -14297,23 +13768,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x432", + "0x34a6e670d07a930315acfa2", + "0x4", + "0x4234167", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x2", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20690, @@ -14322,22 +13792,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x432", + "0x34a6e670d07a930315acfa2", + "0x4", + "0x4234167", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20691, @@ -14346,22 +13815,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000000000432", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x432", + "0x34a6e670d07a930315acfa2", + "0x4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20692, @@ -14370,22 +13838,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000432" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x432" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20693, @@ -14394,22 +13861,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000432", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0x4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x432", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20694, @@ -14418,22 +13884,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000432", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x432", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20695, @@ -14442,21 +13907,20 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000432" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x432" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1074, @@ -14465,20 +13929,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1075, @@ -14487,20 +13950,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1078, @@ -14509,21 +13971,20 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000ef5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xef5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3829, @@ -14532,20 +13993,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3830, @@ -14554,20 +14014,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3832, @@ -14576,21 +14035,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3833, @@ -14599,22 +14057,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3834, @@ -14623,23 +14080,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3837, @@ -14648,24 +14104,23 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000fab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x4234167", + "0xfab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4011, @@ -14674,22 +14129,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4012, @@ -14698,22 +14152,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4015, @@ -14722,23 +14175,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4016, @@ -14747,24 +14199,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4017, @@ -14773,25 +14224,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4019, @@ -14800,26 +14250,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4020, @@ -14828,27 +14277,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x2", + "0x0", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4021, @@ -14857,28 +14305,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x2", + "0x0", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4022, @@ -14887,27 +14334,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x2", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4025, @@ -14916,28 +14362,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000fbb" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x2", + "0x0", + "0x1", + "0xfbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4027, @@ -14946,26 +14391,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4028, @@ -14974,26 +14418,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4029, @@ -15002,26 +14445,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x0", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4030, @@ -15030,25 +14472,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4032, @@ -15057,26 +14498,25 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4033, @@ -15085,25 +14525,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4034, @@ -15112,24 +14551,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4036, @@ -15138,25 +14576,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4037, @@ -15165,26 +14602,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0x20", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4038, @@ -15193,25 +14629,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4039, @@ -15220,25 +14655,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xc4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4042, @@ -15247,26 +14681,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000fd0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xc4", + "0xa4", + "0xfd0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4043, @@ -15275,26 +14708,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xa4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4044, @@ -15303,26 +14735,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4047, @@ -15331,27 +14762,26 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000004feb" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x4feb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20459, @@ -15360,26 +14790,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20460, @@ -15388,26 +14817,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20462, @@ -15416,27 +14844,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20464, @@ -15445,28 +14872,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20465, @@ -15475,29 +14901,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0x20", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20466, @@ -15506,30 +14931,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0x20", + "0xa4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20467, @@ -15538,29 +14962,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20468, @@ -15569,28 +14992,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20469, @@ -15599,28 +15021,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20472, @@ -15629,29 +15050,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004ffc" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0x1", + "0x4ffc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20476, @@ -15660,27 +15080,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20477, @@ -15689,27 +15108,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20478, @@ -15718,28 +15136,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20479, @@ -15748,28 +15165,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20482, @@ -15778,29 +15194,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20483, @@ -15809,30 +15224,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20486, @@ -15841,31 +15255,30 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005f52" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5f52" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24402, @@ -15874,30 +15287,29 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24403, @@ -15906,30 +15318,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24424, @@ -15938,31 +15349,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24425, @@ -15971,32 +15381,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24426, @@ -16005,31 +15414,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24427, @@ -16038,32 +15446,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24428, @@ -16072,31 +15479,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24431, @@ -16105,32 +15511,31 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x1", + "0x1479" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5241, @@ -16139,30 +15544,29 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5242, @@ -16171,30 +15575,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5243, @@ -16203,29 +15606,28 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20487, @@ -16234,28 +15636,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20488, @@ -16264,28 +15665,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xfd0", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20489, @@ -16294,28 +15694,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000fd0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc4", + "0xa4", + "0x0", + "0xfd0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20490, @@ -16324,28 +15723,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xfd0", + "0xa4", + "0x0", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20491, @@ -16354,27 +15752,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xfd0", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20492, @@ -16383,26 +15780,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000fd0", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xfd0", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20493, @@ -16411,25 +15807,24 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000fd0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xfd0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4048, @@ -16438,24 +15833,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4049, @@ -16464,24 +15858,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4050, @@ -16490,25 +15883,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4053, @@ -16517,26 +15909,25 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000fdb" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xfdb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4054, @@ -16545,24 +15936,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4055, @@ -16571,25 +15961,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4058, @@ -16598,26 +15987,25 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000fdd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xfdd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4061, @@ -16626,25 +16014,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4062, @@ -16653,25 +16040,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4065, @@ -16680,26 +16066,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4098, @@ -16708,27 +16093,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4099, @@ -16737,28 +16121,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4100, @@ -16767,29 +16150,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4102, @@ -16798,30 +16180,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4103, @@ -16830,31 +16211,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x2", + "0x0", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4104, @@ -16863,32 +16243,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x2", + "0x0", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4105, @@ -16897,31 +16276,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x2", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4108, @@ -16930,32 +16308,31 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000100e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x2", + "0x0", + "0x1", + "0x100e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4110, @@ -16964,30 +16341,29 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4111, @@ -16996,30 +16372,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4112, @@ -17028,30 +16403,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x0", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4113, @@ -17060,29 +16434,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4115, @@ -17091,30 +16464,29 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4116, @@ -17123,29 +16495,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4117, @@ -17154,28 +16525,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4119, @@ -17184,29 +16554,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4120, @@ -17215,30 +16584,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0x20", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4121, @@ -17247,29 +16615,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4122, @@ -17278,29 +16645,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4125, @@ -17309,30 +16675,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000001023" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc4", + "0xa4", + "0x1023" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4126, @@ -17341,30 +16706,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xa4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4127, @@ -17373,30 +16737,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4130, @@ -17405,31 +16768,30 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000004feb" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x4feb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20459, @@ -17438,30 +16800,29 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20460, @@ -17470,30 +16831,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20462, @@ -17502,31 +16862,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20464, @@ -17535,32 +16894,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20465, @@ -17569,33 +16927,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0x20", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20466, @@ -17604,34 +16961,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0x20", + "0xa4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20467, @@ -17640,33 +16996,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20468, @@ -17675,32 +17030,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20469, @@ -17709,32 +17063,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20472, @@ -17743,33 +17096,32 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004ffc" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0x1", + "0x4ffc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20476, @@ -17778,31 +17130,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20477, @@ -17811,31 +17162,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20478, @@ -17844,32 +17194,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20479, @@ -17878,32 +17227,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20482, @@ -17912,33 +17260,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20483, @@ -17947,34 +17294,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20486, @@ -17983,35 +17329,34 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005f52" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5f52" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24402, @@ -18020,34 +17365,33 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24403, @@ -18056,34 +17400,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24424, @@ -18092,35 +17435,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24425, @@ -18129,36 +17471,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24426, @@ -18167,35 +17508,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24427, @@ -18204,36 +17544,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24428, @@ -18242,35 +17581,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24431, @@ -18279,36 +17617,35 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x1", + "0x1479" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5241, @@ -18317,34 +17654,33 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5242, @@ -18353,34 +17689,33 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5243, @@ -18389,33 +17724,32 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000005007" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x5007" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20487, @@ -18424,32 +17758,31 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20488, @@ -18458,32 +17791,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x1023", + "0xc4", + "0xa4", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20489, @@ -18492,32 +17824,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001023" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc4", + "0xa4", + "0x0", + "0x1023" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20490, @@ -18526,32 +17857,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x1023", + "0xa4", + "0x0", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20491, @@ -18560,31 +17890,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x1023", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20492, @@ -18593,30 +17922,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000001023", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x1023", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20493, @@ -18625,29 +17953,28 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000001023" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x1023" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4131, @@ -18656,28 +17983,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4132, @@ -18686,28 +18012,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4133, @@ -18716,29 +18041,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4134, @@ -18747,30 +18071,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4136, @@ -18779,31 +18102,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4137, @@ -18812,32 +18134,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4", + "0x2", + "0x1", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4138, @@ -18846,33 +18167,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4", + "0x2", + "0x1", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4139, @@ -18881,32 +18201,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4", + "0x2", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 4142, @@ -18915,33 +18234,32 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000d84" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4", + "0x2", + "0x1", + "0x1", + "0xd84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3460, @@ -18950,31 +18268,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3461, @@ -18983,31 +18300,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3462, @@ -19016,31 +18332,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4", + "0x1", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3463, @@ -19049,30 +18364,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3465, @@ -19081,31 +18395,30 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4", + "0x1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3466, @@ -19114,30 +18427,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3467, @@ -19146,29 +18458,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3469, @@ -19177,30 +18488,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3470, @@ -19209,31 +18519,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc4", + "0x20", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3471, @@ -19242,30 +18551,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3472, @@ -19274,30 +18582,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xe4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3475, @@ -19306,31 +18613,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000d99" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xe4", + "0xc4", + "0xd99" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3476, @@ -19339,31 +18645,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xc4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3477, @@ -19372,31 +18677,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3480, @@ -19405,32 +18709,31 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000004feb" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x4feb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20459, @@ -19439,31 +18742,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20460, @@ -19472,31 +18774,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20462, @@ -19505,32 +18806,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20464, @@ -19539,33 +18839,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20465, @@ -19574,34 +18873,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0x20", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20466, @@ -19610,35 +18908,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0x20", + "0xc4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20467, @@ -19647,34 +18944,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20468, @@ -19683,33 +18979,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20469, @@ -19718,33 +19013,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20472, @@ -19753,34 +19047,33 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004ffc" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0x1", + "0x4ffc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20476, @@ -19789,32 +19082,31 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20477, @@ -19823,32 +19115,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20478, @@ -19857,33 +19148,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20479, @@ -19892,33 +19182,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20482, @@ -19927,34 +19216,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20483, @@ -19963,35 +19251,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20486, @@ -20000,36 +19287,35 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005f52" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5f52" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24402, @@ -20038,35 +19324,34 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24403, @@ -20075,35 +19360,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24424, @@ -20112,36 +19396,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24425, @@ -20150,37 +19433,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24426, @@ -20189,36 +19471,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24427, @@ -20227,37 +19508,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24428, @@ -20266,36 +19546,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 24431, @@ -20304,37 +19583,36 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1", + "0x1479" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5241, @@ -20343,35 +19621,34 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5242, @@ -20380,35 +19657,34 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 5243, @@ -20417,34 +19693,33 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20487, @@ -20453,33 +19728,32 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20488, @@ -20488,33 +19762,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xd99", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20489, @@ -20523,33 +19796,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000d99" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xe4", + "0xc4", + "0x0", + "0xd99" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20490, @@ -20558,33 +19830,32 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xd99", + "0xc4", + "0x0", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20491, @@ -20593,32 +19864,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xd99", + "0xc4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20492, @@ -20627,31 +19897,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000d99", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xd99", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 20493, @@ -20660,30 +19929,29 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000d99" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xd99" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3481, @@ -20692,29 +19960,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3482, @@ -20723,29 +19990,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 3485, @@ -20754,30 +20020,29 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002ca2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x2ca2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11426, @@ -20786,29 +20051,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11427, @@ -20817,29 +20081,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11429, @@ -20848,30 +20111,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11430, @@ -20880,31 +20142,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11432, @@ -20913,32 +20174,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11435, @@ -20947,33 +20207,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11436, @@ -20982,34 +20241,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11437, @@ -21018,35 +20276,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11440, @@ -21055,36 +20312,35 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000003f02" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x3f02" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16130, @@ -21093,35 +20349,34 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16131, @@ -21130,35 +20385,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16133, @@ -21167,36 +20421,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16134, @@ -21205,37 +20458,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16135, @@ -21244,38 +20496,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16156, @@ -21284,39 +20535,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16157, @@ -21325,38 +20575,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16158, @@ -21365,39 +20614,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16179, @@ -21406,40 +20654,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16180, @@ -21448,39 +20695,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16181, @@ -21489,38 +20735,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16182, @@ -21529,38 +20774,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16185, @@ -21569,39 +20813,38 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003f3e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1", + "0x3f3e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16190, @@ -21610,37 +20853,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16191, @@ -21649,37 +20891,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16192, @@ -21688,38 +20929,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16213, @@ -21728,39 +20968,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16214, @@ -21769,38 +21008,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16215, @@ -21809,39 +21047,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16236, @@ -21850,40 +21087,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16237, @@ -21892,39 +21128,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16238, @@ -21933,38 +21168,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16241, @@ -21973,39 +21207,38 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003f78" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1", + "0x3f78" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16248, @@ -22014,37 +21247,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16249, @@ -22053,37 +21285,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16250, @@ -22092,38 +21323,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16251, @@ -22132,39 +21362,38 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16252, @@ -22173,39 +21402,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16253, @@ -22214,39 +21442,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16254, @@ -22255,39 +21482,38 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16255, @@ -22296,38 +21522,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16256, @@ -22336,38 +21561,37 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16257, @@ -22376,37 +21600,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16278, @@ -22415,38 +21638,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16279, @@ -22455,39 +21677,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16280, @@ -22496,38 +21717,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16283, @@ -22536,39 +21756,38 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000003fa0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x3fa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16288, @@ -22577,37 +21796,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16289, @@ -22616,37 +21834,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16290, @@ -22655,37 +21872,36 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16291, @@ -22694,36 +21910,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16292, @@ -22732,36 +21947,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002cb1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x2cb1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16293, @@ -22770,36 +21984,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x2cb1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16294, @@ -22808,35 +22021,34 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002cb1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x2cb1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11441, @@ -22845,34 +22057,33 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11442, @@ -22881,34 +22092,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11444, @@ -22917,35 +22127,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11445, @@ -22954,36 +22163,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11446, @@ -22992,36 +22200,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11479, @@ -23030,37 +22237,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11481, @@ -23069,38 +22275,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11482, @@ -23109,38 +22314,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11483, @@ -23149,39 +22353,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11484, @@ -23190,38 +22393,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11485, @@ -23230,39 +22432,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11486, @@ -23271,38 +22472,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11488, @@ -23311,39 +22511,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11489, @@ -23352,40 +22551,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11490, @@ -23394,41 +22592,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0x20", + "0x20", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11491, @@ -23437,40 +22634,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0x20", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11492, @@ -23479,40 +22675,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0", + "0x20", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11493, @@ -23521,40 +22716,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 11494, @@ -23563,43 +22757,39 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "0000000000000000000000000000000000000000000000000000000000000080" + ] }, { "pc": 11495, @@ -23608,31 +22798,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23641,8 +22831,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11496, @@ -23651,31 +22840,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23684,8 +22873,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11497, @@ -23694,32 +22882,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23728,8 +22916,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11498, @@ -23738,31 +22925,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23771,8 +22958,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11499, @@ -23781,32 +22967,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23815,8 +23001,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11500, @@ -23825,31 +23010,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23858,8 +23043,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11502, @@ -23868,32 +23052,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", + "0x34" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23902,8 +23086,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11503, @@ -23912,33 +23095,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", + "0x34", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23947,8 +23130,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11504, @@ -23957,32 +23139,32 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000b4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", + "0xb4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23990,10 +23172,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" + ] }, { "pc": 11505, @@ -24002,30 +23182,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24035,8 +23215,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11506, @@ -24045,31 +23224,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24079,8 +23258,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11507, @@ -24089,31 +23267,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24123,8 +23301,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11509, @@ -24133,32 +23310,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80", + "0x28" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24168,8 +23345,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11510, @@ -24178,33 +23354,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80", + "0x28", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24214,8 +23390,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11511, @@ -24224,34 +23399,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80", + "0x28", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24261,8 +23436,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11512, @@ -24271,33 +23445,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80", + "0x28", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24307,8 +23481,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11513, @@ -24317,32 +23490,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80", + "0x28" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24352,8 +23525,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11514, @@ -24362,33 +23534,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80", + "0x28", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24398,8 +23570,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11515, @@ -24408,31 +23579,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24442,8 +23613,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11517, @@ -24452,32 +23622,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000048" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80", + "0x48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24487,8 +23657,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11518, @@ -24497,33 +23666,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000048", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80", + "0x48", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24533,8 +23702,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11519, @@ -24543,32 +23711,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80", + "0xc8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24578,8 +23746,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11520, @@ -24588,33 +23755,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80", + "0xc8", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24624,8 +23791,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11521, @@ -24634,31 +23800,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24668,8 +23834,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11522, @@ -24678,32 +23843,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24713,8 +23878,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11523, @@ -24723,32 +23887,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000028" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x80", + "0x28" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24758,8 +23922,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11524, @@ -24768,32 +23931,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x28", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24803,8 +23966,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11525, @@ -24813,33 +23975,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x28", + "0x80", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24849,42 +24011,41 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11526, - "op": "SHA3", + "op": "KECCAK256", "gas": 148558, "gasCost": 42, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x28", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24894,8 +24055,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11527, @@ -24904,31 +24064,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24938,8 +24098,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11560, @@ -24948,32 +24107,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xff00000000000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24983,8 +24142,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11562, @@ -24993,33 +24151,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000068" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xff00000000000000000000000000000000000000000000000000000000000000", + "0x68" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25029,8 +24187,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11563, @@ -25039,34 +24196,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000068", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xff00000000000000000000000000000000000000000000000000000000000000", + "0x68", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25076,8 +24233,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11564, @@ -25086,33 +24242,33 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xff00000000000000000000000000000000000000000000000000000000000000", + "0xe8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25121,11 +24277,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "b84189bd33ebe452000000000000000000000000000000000000000000000000" + ] }, { "pc": 11565, @@ -25134,31 +24287,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25170,8 +24323,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11566, @@ -25180,31 +24332,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25216,8 +24368,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11567, @@ -25226,31 +24377,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x80", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25262,8 +24413,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11568, @@ -25272,31 +24422,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + "0x40", + "0x80", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25308,8 +24458,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11569, @@ -25318,30 +24467,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + "0x40", + "0x80", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25353,8 +24502,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11570, @@ -25363,30 +24511,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25398,8 +24546,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11571, @@ -25408,30 +24555,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25443,8 +24590,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11572, @@ -25453,29 +24599,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25487,8 +24633,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11574, @@ -25497,30 +24642,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000069" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x69" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25532,8 +24677,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11575, @@ -25542,31 +24686,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000069", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x69", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25578,8 +24722,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11576, @@ -25588,30 +24731,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0xe9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25623,8 +24766,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11577, @@ -25633,28 +24775,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25666,8 +24808,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11579, @@ -25676,29 +24817,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000007d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x40", + "0x7d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25710,8 +24851,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11580, @@ -25720,30 +24860,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000007d", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x40", + "0x7d", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25755,8 +24895,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11581, @@ -25765,29 +24904,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000fd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x40", + "0xfd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25799,8 +24938,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11582, @@ -25809,29 +24947,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "00000000000000000000000000000000000000000000000000000000000000fd", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xfd", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x40", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25843,8 +24981,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11583, @@ -25853,29 +24990,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "00000000000000000000000000000000000000000000000000000000000000fd", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xfd", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25887,8 +25024,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11584, @@ -25897,29 +25033,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "00000000000000000000000000000000000000000000000000000000000000fd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xfd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25931,8 +25067,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 11585, @@ -25941,27 +25076,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25973,8 +25108,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} + ] }, { "pc": 11618, @@ -25983,28 +25117,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26016,8 +25150,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} + ] }, { "pc": 11620, @@ -26026,29 +25159,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26060,8 +25193,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} + ] }, { "pc": 11621, @@ -26070,30 +25202,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000009d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d", + "0x9d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26105,8 +25237,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} + ] }, { "pc": 11622, @@ -26115,31 +25246,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d", + "0x9d", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26151,8 +25282,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} + ] }, { "pc": 11623, @@ -26161,30 +25291,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000011d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d", + "0x11d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26196,8 +25326,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} + ] }, { "pc": 11624, @@ -26206,30 +25335,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000011d", - "000000000000000000000000000000000000000000000000000000000000009d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x11d", + "0x9d", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26241,8 +25370,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} + ] }, { "pc": 11625, @@ -26251,30 +25379,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000011d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x11d", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26286,8 +25414,7 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" - ], - "storage": {} + ] }, { "pc": 11626, @@ -26296,30 +25423,30 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000011d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x9d", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x11d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26330,10 +25457,8 @@ export const trace: any = JSON.parse(` "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773000000" + ] }, { "pc": 11627, @@ -26342,28 +25467,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x9d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26376,8 +25501,7 @@ export const trace: any = JSON.parse(` "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11628, @@ -26386,29 +25510,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x9d", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26421,8 +25545,7 @@ export const trace: any = JSON.parse(` "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11629, @@ -26431,29 +25554,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000000c8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x9d", + "0xc8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26466,8 +25589,7 @@ export const trace: any = JSON.parse(` "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11630, @@ -26476,30 +25598,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000000c8", - "00000000000000000000000000000000000000000000000000000000000000c8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x9d", + "0xc8", + "0xc8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26512,8 +25634,7 @@ export const trace: any = JSON.parse(` "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11631, @@ -26522,31 +25643,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000000c8", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x9d", + "0xc8", + "0xc8", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26559,8 +25680,7 @@ export const trace: any = JSON.parse(` "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11632, @@ -26569,30 +25689,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000000c8", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x9d", + "0xc8", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26605,8 +25725,7 @@ export const trace: any = JSON.parse(` "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11633, @@ -26615,30 +25734,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - "00000000000000000000000000000000000000000000000000000000000000c8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0x9d", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", + "0xc8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26651,8 +25770,7 @@ export const trace: any = JSON.parse(` "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11634, @@ -26661,30 +25779,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c8", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - "000000000000000000000000000000000000000000000000000000000000009d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0xc8", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", + "0x9d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26697,8 +25815,7 @@ export const trace: any = JSON.parse(` "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11635, @@ -26707,29 +25824,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000055" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0xc8", + "0x55" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26742,8 +25859,7 @@ export const trace: any = JSON.parse(` "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11636, @@ -26752,30 +25868,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000055", - "00000000000000000000000000000000000000000000000000000000000000c8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0xc8", + "0x55", + "0xc8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26788,8 +25904,7 @@ export const trace: any = JSON.parse(` "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11637, @@ -26798,28 +25913,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0xc8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26832,8 +25947,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11639, @@ -26842,29 +25956,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c8", - "00000000000000000000000000000000000000000000000000000000000000bd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0xc8", + "0xbd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26877,8 +25991,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11640, @@ -26887,29 +26000,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000bd", - "00000000000000000000000000000000000000000000000000000000000000c8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x80", + "0x20", + "0xbd", + "0xc8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26922,8 +26035,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11641, @@ -26932,29 +26044,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000bd", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xc8", + "0x20", + "0xbd", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -26967,8 +26079,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11642, @@ -26977,28 +26088,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xc8", + "0x20", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27011,8 +26122,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11643, @@ -27021,28 +26131,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xc8", + "0x13d", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27055,8 +26165,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11644, @@ -27065,28 +26174,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x20", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xc8", + "0x13d", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27099,8 +26208,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11645, @@ -27109,26 +26217,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x20", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xc8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27141,8 +26249,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11646, @@ -27151,27 +26258,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "00000000000000000000000000000000000000000000000000000000000000c8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x20", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xc8", + "0xc8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27184,8 +26291,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11647, @@ -27194,27 +26300,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000055" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x20", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xc8", + "0x55" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27227,8 +26333,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11648, @@ -27237,27 +26342,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000055", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c8", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xc8", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27270,8 +26375,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11649, @@ -27280,26 +26384,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000055", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xe8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27312,8 +26416,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11650, @@ -27322,26 +26425,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "00000000000000000000000000000000000000000000000000000000000000e8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xe8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x55" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27354,8 +26457,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11651, @@ -27364,26 +26466,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "00000000000000000000000000000000000000000000000000000000000000e8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0xe8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x55", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27396,36 +26498,35 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11652, - "op": "SHA3", + "op": "KECCAK256", "gas": 148339, "gasCost": 48, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - "00000000000000000000000000000000000000000000000000000000000000e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x55", + "0xe8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27438,8 +26539,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11653, @@ -27448,25 +26548,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000001030", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1030", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27479,8 +26579,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11654, @@ -27489,25 +26588,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001030" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1030" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27520,8 +26619,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11655, @@ -27530,25 +26628,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001030", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1030", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27561,8 +26659,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11656, @@ -27571,24 +26668,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001030", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1030", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27601,8 +26698,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11657, @@ -27611,23 +26707,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001030", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1030", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27640,8 +26736,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11658, @@ -27650,22 +26745,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001030", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1030", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27678,8 +26773,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11659, @@ -27688,21 +26782,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001030", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1030", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27715,8 +26809,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11660, @@ -27725,20 +26818,20 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001030" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1030" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27751,8 +26844,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 4144, @@ -27761,19 +26853,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27786,8 +26878,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 4145, @@ -27796,19 +26887,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27821,8 +26912,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 4146, @@ -27831,20 +26921,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27857,8 +26947,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 4149, @@ -27867,21 +26956,21 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000002d8d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x2d8d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27894,8 +26983,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11661, @@ -27904,20 +26992,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27930,8 +27018,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11662, @@ -27940,20 +27027,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27966,8 +27053,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11695, @@ -27976,21 +27062,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28003,8 +27089,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11716, @@ -28013,22 +27098,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28041,8 +27126,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11717, @@ -28051,21 +27135,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28078,8 +27162,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11718, @@ -28088,22 +27171,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28116,8 +27199,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11739, @@ -28126,23 +27208,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28155,8 +27237,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11740, @@ -28165,22 +27246,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28193,8 +27274,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11741, @@ -28203,21 +27283,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28230,8 +27310,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11742, @@ -28240,22 +27319,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28268,8 +27347,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11743, @@ -28278,22 +27356,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28306,8 +27384,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11746, @@ -28316,23 +27393,23 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002de8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x1", + "0x2de8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28345,8 +27422,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11752, @@ -28355,21 +27431,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28382,8 +27458,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11753, @@ -28392,21 +27467,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28419,8 +27494,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11754, @@ -28429,21 +27503,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28456,8 +27530,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 11757, @@ -28466,22 +27539,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f31" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x2f31" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28494,8 +27567,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12081, @@ -28504,20 +27576,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28530,8 +27602,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12082, @@ -28540,20 +27611,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28566,8 +27637,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12103, @@ -28576,21 +27646,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28603,8 +27673,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12104, @@ -28613,22 +27682,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28641,8 +27710,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12105, @@ -28651,21 +27719,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28678,8 +27746,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12106, @@ -28688,22 +27755,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28716,8 +27783,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12107, @@ -28726,21 +27792,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28753,8 +27819,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12108, @@ -28763,21 +27828,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28790,8 +27855,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12111, @@ -28800,22 +27864,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f5f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x2f5f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28828,8 +27892,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12127, @@ -28838,20 +27901,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28864,8 +27927,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12128, @@ -28874,20 +27936,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28900,8 +27962,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12131, @@ -28910,21 +27971,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28937,8 +27998,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12132, @@ -28947,22 +28007,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28975,8 +28035,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12133, @@ -28985,23 +28044,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29014,8 +28073,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12134, @@ -29024,24 +28082,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29054,8 +28112,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12135, @@ -29064,25 +28121,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29095,8 +28152,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 12138, @@ -29105,26 +28161,26 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ae1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ae1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29137,8 +28193,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 15073, @@ -29147,25 +28202,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29178,8 +28233,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 15074, @@ -29188,25 +28242,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29219,8 +28273,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 15076, @@ -29229,26 +28282,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29261,8 +28314,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 15077, @@ -29271,27 +28323,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29304,8 +28356,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 15078, @@ -29314,27 +28365,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29347,8 +28398,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 15099, @@ -29357,28 +28407,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29391,8 +28441,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 15100, @@ -29401,29 +28450,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29436,8 +28485,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 15101, @@ -29446,30 +28494,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29482,8 +28530,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 15102, @@ -29492,29 +28539,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29527,8 +28574,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 15104, @@ -29537,30 +28583,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29573,8 +28619,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 15105, @@ -29583,33 +28628,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000013d" - ], - "memory": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x24", + "0x13d" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000013d", @@ -29620,8 +28665,7 @@ export const trace: any = JSON.parse(` "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" - ], - "storage": {} + ] }, { "pc": 15106, @@ -29630,30 +28674,30 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000161" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x161" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29665,12 +28709,8 @@ export const trace: any = JSON.parse(` "b84189bd33ebe452000000000000000000000000000000000000000000000000", "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000" + ] }, { "pc": 15107, @@ -29679,28 +28719,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29716,8 +28756,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15108, @@ -29726,29 +28765,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29764,8 +28803,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15109, @@ -29774,30 +28812,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29813,8 +28851,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15110, @@ -29823,29 +28860,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29861,8 +28898,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15112, @@ -29871,30 +28907,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29910,8 +28946,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15113, @@ -29920,31 +28955,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x44", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29960,8 +28995,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f200000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15114, @@ -29970,30 +29004,30 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000181" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x181" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30008,10 +29042,8 @@ export const trace: any = JSON.parse(` "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "f200000000000000000000000000000000000000000000000000000000000000" + ] }, { "pc": 15115, @@ -30020,28 +29052,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30058,8 +29090,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15117, @@ -30068,29 +29099,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30107,8 +29138,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15118, @@ -30117,30 +29147,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30157,8 +29187,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15119, @@ -30167,31 +29196,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0x64", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30208,8 +29237,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15120, @@ -30218,30 +29246,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001a1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0x1a1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30258,8 +29286,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15121, @@ -30268,31 +29295,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001a1", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0x1a1", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30309,8 +29336,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15122, @@ -30319,31 +29345,31 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000001a1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0x4234167", + "0x1a1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30359,10 +29385,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "1e00000000000000000000000000000000000000000000000000000000000000" + ] }, { "pc": 15123, @@ -30371,29 +29395,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30411,8 +29435,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15124, @@ -30421,30 +29444,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30462,8 +29485,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15125, @@ -30472,30 +29494,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30513,8 +29535,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15126, @@ -30523,31 +29544,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0x13d", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30565,8 +29586,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15127, @@ -30575,32 +29595,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0x13d", + "0x13d", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30618,8 +29638,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15128, @@ -30628,31 +29647,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0x13d", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30670,8 +29689,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15129, @@ -30680,31 +29698,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0x0", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30722,8 +29740,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15130, @@ -30732,31 +29749,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x13d", + "0x0", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30774,8 +29791,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15131, @@ -30784,30 +29800,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x13d", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30825,8 +29841,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15132, @@ -30835,31 +29850,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x13d", + "0x64", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30877,8 +29892,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15133, @@ -30887,29 +29901,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30927,8 +29941,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15135, @@ -30937,30 +29950,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x13d", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30978,8 +29991,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15136, @@ -30988,30 +30000,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x84", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31029,8 +30041,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15137, @@ -31039,30 +30050,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x84", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31080,8 +30091,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15138, @@ -31090,29 +30100,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31130,8 +30140,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15139, @@ -31140,30 +30149,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1c1", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31181,8 +30190,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15140, @@ -31191,28 +30199,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31230,8 +30238,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15142, @@ -31240,29 +30247,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31280,8 +30287,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15143, @@ -31290,30 +30296,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x20", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31331,8 +30337,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15144, @@ -31341,29 +30346,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31381,8 +30386,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15145, @@ -31391,30 +30395,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x15d", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31432,8 +30436,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15146, @@ -31442,30 +30445,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x15d", + "0xccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31483,8 +30486,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15175, @@ -31493,31 +30495,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x15d", + "0xccde3781a1b463aab7c8480ccfa8daec", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31535,8 +30537,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15176, @@ -31545,30 +30546,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x15d", + "0xccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31586,8 +30587,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15209, @@ -31596,31 +30596,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "23b872dd00000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x15d", + "0xccde3781a1b463aab7c8480ccfa8daec", + "0x23b872dd00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31638,8 +30638,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15210, @@ -31648,30 +30647,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x15d", + "0x23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31689,8 +30688,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15211, @@ -31699,31 +30697,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d", - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x15d", + "0x23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31741,8 +30739,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15212, @@ -31751,29 +30748,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31791,8 +30788,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15213, @@ -31801,29 +30797,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x15d", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31841,8 +30837,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15214, @@ -31851,29 +30846,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x15d", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31891,8 +30886,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15215, @@ -31901,30 +30895,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x15d", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1c1", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31942,8 +30936,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15216, @@ -31952,30 +30945,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x15d", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1c1", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31993,8 +30986,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15218, @@ -32003,31 +30995,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x15d", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1c1", + "0x64", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32045,8 +31037,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15219, @@ -32055,31 +31046,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1c1", + "0x64", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32097,8 +31088,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15220, @@ -32107,32 +31097,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x13d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1c1", + "0x64", + "0x15d", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32150,8 +31140,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15221, @@ -32160,32 +31149,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1c1", + "0x64", + "0x15d", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32203,8 +31192,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15222, @@ -32213,32 +31201,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x13d", + "0x1c1", + "0x64", + "0x15d", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32256,8 +31244,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15223, @@ -32266,33 +31253,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x13d", + "0x1c1", + "0x64", + "0x15d", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32310,8 +31297,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15224, @@ -32320,32 +31306,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x13d", + "0x1c1", + "0x64", + "0x15d", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32363,8 +31349,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15225, @@ -32373,32 +31358,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x1c1", + "0x64", + "0x15d", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32416,8 +31401,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15226, @@ -32426,32 +31410,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x64", + "0x15d", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32469,8 +31453,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15227, @@ -32479,32 +31462,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x15d", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32522,8 +31505,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15228, @@ -32532,33 +31514,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x15d", + "0x64", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32576,8 +31558,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15229, @@ -32586,33 +31567,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x64", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32630,8 +31611,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15230, @@ -32640,33 +31620,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32684,8 +31664,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15231, @@ -32694,34 +31673,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32739,8 +31718,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15232, @@ -32749,35 +31727,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32795,8 +31773,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15233, @@ -32805,36 +31782,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32852,8 +31829,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15234, @@ -32862,36 +31838,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32909,8 +31885,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15236, @@ -32919,37 +31894,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0x15d", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32967,8 +31942,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15237, @@ -32977,38 +31951,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0x15d", + "0x20", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33026,8 +32000,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15238, @@ -33036,37 +32009,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0x15d", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33084,8 +32057,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15241, @@ -33094,38 +32066,38 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003bbe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0x15d", + "0x0", + "0x3bbe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33143,8 +32115,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15242, @@ -33153,36 +32124,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33200,8 +32171,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15243, @@ -33210,37 +32180,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0x15d", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33258,8 +32228,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15244, @@ -33268,37 +32237,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0x15d", + "0x23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33316,8 +32285,7 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6700000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15245, @@ -33326,38 +32294,38 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0x15d", + "0x23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33374,10 +32342,8 @@ export const trace: any = JSON.parse(` "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "6700000000000000000000000000000000000000000000000000000000000000" + ] }, { "pc": 15246, @@ -33386,36 +32352,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33434,8 +32400,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15279, @@ -33444,37 +32409,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0x15d", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33493,8 +32458,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15280, @@ -33503,37 +32467,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x64", + "0x1c1", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33552,8 +32516,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15281, @@ -33562,37 +32525,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x15d", + "0x1c1", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33611,8 +32574,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15282, @@ -33621,36 +32583,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x15d", + "0x1c1", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33669,8 +32631,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15283, @@ -33679,36 +32640,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1c1", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33727,8 +32688,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15285, @@ -33737,37 +32697,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1c1", + "0x15d", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33786,8 +32746,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15286, @@ -33796,37 +32755,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x20", + "0x15d", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33845,8 +32804,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15287, @@ -33855,38 +32813,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x20", + "0x15d", + "0x1c1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33905,8 +32863,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15288, @@ -33915,37 +32872,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000015d", - "00000000000000000000000000000000000000000000000000000000000001e1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x20", + "0x15d", + "0x1e1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33964,8 +32921,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15289, @@ -33974,37 +32930,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x15d", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34023,8 +32979,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15290, @@ -34033,36 +32988,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34081,8 +33036,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15293, @@ -34091,37 +33045,37 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000003b81" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d", + "0x3b81" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34140,8 +33094,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15233, @@ -34150,36 +33103,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34198,8 +33151,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15234, @@ -34208,36 +33160,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34256,8 +33208,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15236, @@ -34266,37 +33217,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34315,8 +33266,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15237, @@ -34325,38 +33275,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d", + "0x20", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34375,8 +33325,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15238, @@ -34385,37 +33334,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34434,8 +33383,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15241, @@ -34444,38 +33392,38 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003bbe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d", + "0x0", + "0x3bbe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34494,8 +33442,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15242, @@ -34504,36 +33451,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34552,8 +33499,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15243, @@ -34562,37 +33508,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "000000000000000000000000000000000000000000000000000000000000017d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d", + "0x17d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34611,8 +33557,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15244, @@ -34621,37 +33566,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d", + "0xf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34670,8 +33615,7 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ec00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15245, @@ -34680,38 +33624,38 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "00000000000000000000000000000000000000000000000000000000000001e1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d", + "0xf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", + "0x1e1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34729,10 +33673,8 @@ export const trace: any = JSON.parse(` "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ec00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "ec00000000000000000000000000000000000000000000000000000000000000" + ] }, { "pc": 15246, @@ -34741,36 +33683,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34790,8 +33732,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15279, @@ -34800,37 +33741,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0x17d", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34850,8 +33791,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15280, @@ -34860,37 +33800,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001e1", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000017d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x44", + "0x1e1", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x17d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34910,8 +33850,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15281, @@ -34920,37 +33859,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000017d", - "00000000000000000000000000000000000000000000000000000000000001e1", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x17d", + "0x1e1", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34970,8 +33909,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15282, @@ -34980,36 +33918,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000017d", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x17d", + "0x1e1", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35029,8 +33967,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15283, @@ -35039,36 +33976,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x1e1", + "0x17d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35088,8 +34025,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15285, @@ -35098,37 +34034,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000001e1", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x1e1", + "0x17d", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35148,8 +34084,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15286, @@ -35158,39 +34093,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000017d", - "00000000000000000000000000000000000000000000000000000000000001e1" - ], - "memory": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x20", + "0x17d", + "0x1e1" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000001c1", @@ -35208,8 +34143,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15287, @@ -35218,38 +34152,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000017d", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x20", + "0x17d", + "0x1e1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35269,8 +34203,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15288, @@ -35279,37 +34212,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x20", + "0x17d", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35329,8 +34262,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15289, @@ -35339,37 +34271,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000017d", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x17d", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35389,8 +34321,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15290, @@ -35399,36 +34330,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35448,8 +34379,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15293, @@ -35458,37 +34388,37 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000003b81" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d", + "0x3b81" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35508,8 +34438,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15233, @@ -35518,36 +34447,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35567,8 +34496,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15234, @@ -35577,36 +34505,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35626,8 +34554,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15236, @@ -35636,37 +34563,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35686,8 +34613,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15237, @@ -35696,38 +34622,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d", + "0x20", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35747,8 +34673,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15238, @@ -35757,37 +34682,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35807,8 +34732,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15241, @@ -35817,38 +34741,38 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003bbe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d", + "0x0", + "0x3bbe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35868,8 +34792,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15242, @@ -35878,36 +34801,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35927,8 +34850,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15243, @@ -35937,37 +34859,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "000000000000000000000000000000000000000000000000000000000000019d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d", + "0x19d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35987,8 +34909,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15244, @@ -35997,37 +34918,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "7c2e411e00000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d", + "0x7c2e411e00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36047,8 +34968,7 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad00000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15245, @@ -36057,38 +34977,38 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "7c2e411e00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d", + "0x7c2e411e00000000000000000000000000000000000000000000000000000000", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36107,10 +35027,8 @@ export const trace: any = JSON.parse(` "1e00000000000000000000000000000000000000000000000000000000042341", "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "ad00000000000000000000000000000000000000000000000000000000000000" + ] }, { "pc": 15246, @@ -36119,36 +35037,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36169,8 +35087,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15279, @@ -36179,37 +35096,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0x19d", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36230,8 +35147,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15280, @@ -36240,37 +35156,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000019d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x24", + "0x201", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x19d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36291,8 +35207,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15281, @@ -36301,37 +35216,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000201", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x19d", + "0x201", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36352,8 +35267,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15282, @@ -36362,36 +35276,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x19d", + "0x201", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36412,8 +35326,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15283, @@ -36422,36 +35335,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x201", + "0x19d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36472,8 +35385,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15285, @@ -36482,37 +35394,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x201", + "0x19d", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36533,8 +35445,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15286, @@ -36543,37 +35454,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x20", + "0x19d", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36594,8 +35505,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15287, @@ -36604,38 +35514,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x20", + "0x19d", + "0x201", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36656,8 +35566,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15288, @@ -36666,37 +35575,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x20", + "0x19d", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36717,8 +35626,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15289, @@ -36727,37 +35635,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000000000000000000000000000000000000000019d", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x19d", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36778,8 +35686,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15290, @@ -36788,36 +35695,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36838,8 +35745,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15293, @@ -36848,37 +35754,37 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000003b81" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0x3b81" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36899,8 +35805,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15233, @@ -36909,36 +35814,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36959,8 +35864,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15234, @@ -36969,36 +35873,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37019,8 +35923,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15236, @@ -37029,37 +35932,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37080,8 +35983,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15237, @@ -37090,38 +35992,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0x20", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37142,8 +36044,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15238, @@ -37152,37 +36053,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37203,8 +36104,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15241, @@ -37213,38 +36113,38 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003bbe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0x1", + "0x3bbe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37265,8 +36165,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15294, @@ -37275,36 +36174,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37325,8 +36224,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15295, @@ -37335,36 +36233,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37385,8 +36283,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15297, @@ -37395,37 +36292,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37446,8 +36343,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15298, @@ -37456,38 +36352,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0x1", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37508,8 +36404,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15300, @@ -37518,39 +36413,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0x1", + "0x4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37571,8 +36466,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15301, @@ -37581,38 +36475,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000001c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0x1", + "0x1c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37633,8 +36527,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15304, @@ -37643,39 +36536,39 @@ export const trace: any = JSON.parse(` "gasCost": 60, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000001c", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0x1", + "0x1c", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37696,8 +36589,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15305, @@ -37706,38 +36598,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000100000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0x1", + "0x100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37758,8 +36650,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15306, @@ -37768,37 +36659,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37819,8 +36710,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15307, @@ -37829,38 +36719,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37881,8 +36771,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15308, @@ -37891,38 +36780,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffffffff00000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xffffffff00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37943,8 +36832,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15309, @@ -37953,39 +36841,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffffffff00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001bd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xffffffff00000000000000000000000000000000000000000000000000000000", + "0x1bd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38006,8 +36894,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15310, @@ -38016,39 +36903,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffffffff00000000000000000000000000000000000000000000000000000000", - "0423416723b872dd000000000000000000000000ccde3781a1b463aab7c8480c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xffffffff00000000000000000000000000000000000000000000000000000000", + "0x423416723b872dd000000000000000000000000ccde3781a1b463aab7c8480c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38069,8 +36956,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15311, @@ -38079,38 +36965,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x423416700000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38131,8 +37017,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15312, @@ -38141,39 +37026,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x423416700000000000000000000000000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38194,8 +37079,7 @@ export const trace: any = JSON.parse(` "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15313, @@ -38204,40 +37088,40 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x423416700000000000000000000000000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38257,10 +37141,8 @@ export const trace: any = JSON.parse(` "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15314, @@ -38269,40 +37151,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x423416700000000000000000000000000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38324,8 +37206,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15315, @@ -38334,39 +37215,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x423416700000000000000000000000000000000000000000000000000000000", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38388,8 +37269,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15316, @@ -38398,40 +37278,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x423416700000000000000000000000000000000000000000000000000000000", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38453,8 +37333,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15317, @@ -38463,41 +37342,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x423416700000000000000000000000000000000000000000000000000000000", + "0x0", + "0x0", + "0x423416700000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38519,8 +37398,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15318, @@ -38529,40 +37407,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x423416700000000000000000000000000000000000000000000000000000000", + "0x0", + "0x423416700000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38584,8 +37462,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15319, @@ -38594,41 +37471,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x423416700000000000000000000000000000000000000000000000000000000", + "0x0", + "0x423416700000000000000000000000000000000000000000000000000000000", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38650,8 +37527,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15320, @@ -38660,39 +37536,39 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x423416700000000000000000000000000000000000000000000000000000000", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38714,8 +37590,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15321, @@ -38724,38 +37599,38 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0423416700000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x423416700000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38777,8 +37652,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15322, @@ -38787,37 +37661,37 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38839,8 +37713,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15323, @@ -38849,36 +37722,36 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000001bd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221", + "0x1bd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38900,8 +37773,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15324, @@ -38910,35 +37782,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38960,8 +37832,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15325, @@ -38970,34 +37841,34 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39019,8 +37890,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15326, @@ -39029,33 +37899,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000015d", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x15d", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39077,8 +37947,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15327, @@ -39087,33 +37956,33 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "000000000000000000000000000000000000000000000000000000000000015d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x64", + "0x15d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39135,8 +38004,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15328, @@ -39145,32 +38013,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x1c1", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39192,8 +38060,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15329, @@ -39202,31 +38069,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000013d", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000225" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x13d", + "0x1c1", + "0x225" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39248,8 +38115,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15330, @@ -39258,31 +38124,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "00000000000000000000000000000000000000000000000000000000000001c1", - "000000000000000000000000000000000000000000000000000000000000013d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x1c1", + "0x13d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39304,8 +38170,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15331, @@ -39314,30 +38179,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39359,8 +38224,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15332, @@ -39369,29 +38233,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39413,8 +38277,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15334, @@ -39423,30 +38286,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39468,8 +38331,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15336, @@ -39478,31 +38340,86 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x0", + "0x40" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", + "00000000000000000000000000000000000000000000000000000000000001c1", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", + "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", + "ad7c2e411e000000000000000000000000000000000000000000000000000000", + "0004234167000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 15337, + "op": "DUP1", + "gas": 147475, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x0", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39524,64 +38441,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} - }, - { - "pc": 15337, - "op": "DUP1", - "gas": 147475, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6723b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8da", - "ecf0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2", - "ad7c2e411e000000000000000000000000000000000000000000000000000000", - "0004234167000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15338, @@ -39590,32 +38450,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x0", + "0x1c1", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39637,8 +38497,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15339, @@ -39647,33 +38506,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000225" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x0", + "0x1c1", + "0x1c1", + "0x225" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39695,8 +38554,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15340, @@ -39705,32 +38563,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x0", + "0x1c1", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39752,8 +38610,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15341, @@ -39762,33 +38619,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x0", + "0x1c1", + "0x64", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39810,8 +38667,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15343, @@ -39820,34 +38676,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x0", + "0x1c1", + "0x64", + "0x1c1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39869,8 +38725,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15344, @@ -39879,35 +38734,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x0", + "0x1c1", + "0x64", + "0x1c1", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39929,8 +38784,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 15345, @@ -39939,36 +38793,36 @@ export const trace: any = JSON.parse(` "gasCost": 145192, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000023fff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x0", + "0x1c1", + "0x64", + "0x1c1", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x23fff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39990,8 +38844,7 @@ export const trace: any = JSON.parse(` "ad7c2e411e000000000000000000000000000000000000000000000000000000", "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + ] }, { "pc": 0, @@ -39999,9 +38852,7 @@ export const trace: any = JSON.parse(` "gas": 142592, "gasCost": 3, "depth": 3, - "stack": [], - "memory": [], - "storage": {} + "stack": [] }, { "pc": 2, @@ -40010,10 +38861,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {} + "0x80" + ] }, { "pc": 4, @@ -40022,15 +38871,9 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {} + "0x80", + "0x40" + ] }, { "pc": 5, @@ -40043,8 +38886,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 7, @@ -40053,14 +38895,13 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 8, @@ -40069,15 +38910,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x4", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 9, @@ -40086,14 +38926,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 12, @@ -40102,15 +38941,14 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000006d" + "0x0", + "0x6d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 13, @@ -40123,8 +38961,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 15, @@ -40133,14 +38970,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 16, @@ -40149,14 +38985,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 46, @@ -40165,15 +39000,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "0000000100000000000000000000000000000000000000000000000000000000" + "0x23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", + "0x100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 47, @@ -40182,15 +39016,14 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "0000000100000000000000000000000000000000000000000000000000000000", - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x100000000000000000000000000000000000000000000000000000000", + "0x23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 48, @@ -40199,14 +39032,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 53, @@ -40215,15 +39047,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x23b872dd", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 54, @@ -40232,14 +39063,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 55, @@ -40248,15 +39078,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 60, @@ -40265,16 +39094,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000003659cfe6" + "0x23b872dd", + "0x23b872dd", + "0x3659cfe6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 61, @@ -40283,15 +39111,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 64, @@ -40300,16 +39127,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000077" + "0x23b872dd", + "0x0", + "0x77" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 65, @@ -40318,14 +39144,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 66, @@ -40334,15 +39159,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 71, @@ -40351,16 +39175,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000004f1ef286" + "0x23b872dd", + "0x23b872dd", + "0x4f1ef286" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 72, @@ -40369,15 +39192,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 75, @@ -40386,16 +39208,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ba" + "0x23b872dd", + "0x0", + "0xba" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 76, @@ -40404,14 +39225,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 77, @@ -40420,15 +39240,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 82, @@ -40437,16 +39256,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000005c60da1b" + "0x23b872dd", + "0x23b872dd", + "0x5c60da1b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 83, @@ -40455,15 +39273,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 86, @@ -40472,16 +39289,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000108" + "0x23b872dd", + "0x0", + "0x108" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 87, @@ -40490,14 +39306,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 88, @@ -40506,15 +39321,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 93, @@ -40523,16 +39337,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000008f283970" + "0x23b872dd", + "0x23b872dd", + "0x8f283970" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 94, @@ -40541,15 +39354,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 97, @@ -40558,16 +39370,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000015f" + "0x23b872dd", + "0x0", + "0x15f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 98, @@ -40576,14 +39387,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 99, @@ -40592,15 +39402,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 104, @@ -40609,16 +39418,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000f851a440" + "0x23b872dd", + "0x23b872dd", + "0xf851a440" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 105, @@ -40627,15 +39435,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 108, @@ -40644,16 +39451,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a2" + "0x23b872dd", + "0x0", + "0x1a2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 109, @@ -40662,14 +39468,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 110, @@ -40678,14 +39483,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 113, @@ -40694,15 +39498,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x23b872dd", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 116, @@ -40711,16 +39514,15 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000001f9" + "0x23b872dd", + "0x75", + "0x1f9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 505, @@ -40729,15 +39531,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x23b872dd", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 506, @@ -40746,15 +39547,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x23b872dd", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 509, @@ -40763,16 +39563,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x23b872dd", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 512, @@ -40781,17 +39580,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000576" + "0x23b872dd", + "0x75", + "0x201", + "0x576" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1398, @@ -40800,16 +39598,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x23b872dd", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1399, @@ -40818,16 +39615,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x23b872dd", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1402, @@ -40836,17 +39632,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" + "0x23b872dd", + "0x75", + "0x201", + "0x57e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1405, @@ -40855,18 +39650,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "00000000000000000000000000000000000000000000000000000000000006a8" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x6a8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1704, @@ -40875,17 +39669,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" + "0x23b872dd", + "0x75", + "0x201", + "0x57e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1705, @@ -40894,17 +39687,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" + "0x23b872dd", + "0x75", + "0x201", + "0x57e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1707, @@ -40913,18 +39705,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1708, @@ -40933,19 +39724,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1741, @@ -40954,20 +39744,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1743, @@ -40976,21 +39765,20 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1744, @@ -40999,20 +39787,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1745, @@ -41021,20 +39808,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1746, @@ -41043,19 +39829,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {} + ] }, { "pc": 1747, @@ -41064,13 +39849,13 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41088,22 +39873,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1749, @@ -41112,22 +39894,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1750, @@ -41136,21 +39915,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1751, @@ -41159,20 +39935,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x23b872dd", + "0x75", + "0x201", + "0x57e", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1752, @@ -41181,20 +39954,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "000000000000000000000000000000000000000000000000000000000000057e" + "0x23b872dd", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x57e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1406, @@ -41203,19 +39973,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x23b872dd", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1407, @@ -41224,19 +39991,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x23b872dd", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1428, @@ -41245,20 +40009,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1429, @@ -41267,19 +40028,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x23b872dd", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1430, @@ -41288,20 +40046,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x23b872dd", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1451, @@ -41310,21 +40065,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1452, @@ -41333,20 +40085,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x23b872dd", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1453, @@ -41355,19 +40104,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x201", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1454, @@ -41376,19 +40122,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x75", + "0x201", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1455, @@ -41397,19 +40140,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x201", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1456, @@ -41418,19 +40158,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x75", + "0x201", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1459, @@ -41439,20 +40176,17 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000647" + "0x23b872dd", + "0x75", + "0x201", + "0x1", + "0x647" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1607, @@ -41461,18 +40195,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x23b872dd", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1608, @@ -41481,18 +40212,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x23b872dd", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1611, @@ -41501,19 +40229,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" + "0x23b872dd", + "0x75", + "0x201", + "0x64f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1614, @@ -41522,20 +40247,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f", - "0000000000000000000000000000000000000000000000000000000000000777" + "0x23b872dd", + "0x75", + "0x201", + "0x64f", + "0x777" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1911, @@ -41544,19 +40266,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" + "0x23b872dd", + "0x75", + "0x201", + "0x64f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1912, @@ -41565,19 +40284,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" + "0x23b872dd", + "0x75", + "0x201", + "0x64f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1615, @@ -41586,18 +40302,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x23b872dd", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1616, @@ -41606,18 +40319,15 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x23b872dd", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 513, @@ -41626,17 +40336,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x23b872dd", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 514, @@ -41645,17 +40352,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x23b872dd", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 517, @@ -41664,18 +40368,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211" + "0x23b872dd", + "0x75", + "0x211" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 520, @@ -41684,19 +40385,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" + "0x23b872dd", + "0x75", + "0x211", + "0x20c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 523, @@ -41705,20 +40403,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000651" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0x651" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1617, @@ -41727,19 +40422,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" + "0x23b872dd", + "0x75", + "0x211", + "0x20c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1618, @@ -41748,19 +40440,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" + "0x23b872dd", + "0x75", + "0x211", + "0x20c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1620, @@ -41769,20 +40458,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1621, @@ -41791,21 +40477,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1654, @@ -41814,22 +40497,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1656, @@ -41838,23 +40518,20 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1657, @@ -41863,22 +40540,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1658, @@ -41887,22 +40561,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1659, @@ -41911,21 +40582,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" - } + ] }, { "pc": 1660, @@ -41934,13 +40602,13 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41959,23 +40627,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1662, @@ -41984,23 +40648,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1663, @@ -42009,22 +40669,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1664, @@ -42033,21 +40689,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x23b872dd", + "0x75", + "0x211", + "0x20c", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1665, @@ -42056,21 +40708,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "000000000000000000000000000000000000000000000000000000000000020c" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x20c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 524, @@ -42079,20 +40727,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 525, @@ -42101,20 +40745,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 528, @@ -42123,21 +40763,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000682" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x682" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1666, @@ -42146,20 +40782,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1667, @@ -42168,20 +40800,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1668, @@ -42190,21 +40818,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1670, @@ -42213,22 +40837,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x64", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1671, @@ -42237,24 +40857,19 @@ export const trace: any = JSON.parse(` "gasCost": 18, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x64", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + "0000000000000000000000000000000000000000000000000000000000000080" + ] }, { "pc": 1672, @@ -42263,21 +40878,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1674, @@ -42286,22 +40897,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0" ], "memory": [ "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1675, @@ -42310,23 +40917,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0" ], "memory": [ "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1676, @@ -42335,24 +40938,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0", + "0x64" ], "memory": [ "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1678, @@ -42361,25 +40960,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0", + "0x64", + "0x0" ], "memory": [ "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1679, @@ -42388,26 +40983,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0", + "0x64", + "0x0", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1680, @@ -42416,27 +41007,23 @@ export const trace: any = JSON.parse(` "gasCost": 135827, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000021ad5" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0", + "0x64", + "0x0", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x21ad5" ], "memory": [ "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 0, @@ -42444,12 +41031,7 @@ export const trace: any = JSON.parse(` "gas": 133227, "gasCost": 3, "depth": 4, - "stack": [], - "memory": [], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + "stack": [] }, { "pc": 2, @@ -42458,13 +41040,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + "0x80" + ] }, { "pc": 4, @@ -42473,18 +41050,9 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + "0x80", + "0x40" + ] }, { "pc": 5, @@ -42497,11 +41065,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 6, @@ -42510,17 +41074,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 7, @@ -42529,18 +41089,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 8, @@ -42549,18 +41105,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 11, @@ -42569,19 +41121,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" + "0x0", + "0x1", + "0x10" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 16, @@ -42590,17 +41138,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 17, @@ -42609,17 +41153,13 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 18, @@ -42632,11 +41172,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 20, @@ -42645,17 +41181,13 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 21, @@ -42664,18 +41196,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x4", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 22, @@ -42684,17 +41212,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 25, @@ -42703,18 +41227,14 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000336" + "0x0", + "0x336" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 26, @@ -42727,11 +41247,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 28, @@ -42740,17 +41256,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 29, @@ -42759,17 +41271,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 31, @@ -42778,18 +41286,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 32, @@ -42798,17 +41302,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 33, @@ -42817,18 +41317,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 38, @@ -42837,19 +41333,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000007f2eecc3" + "0x23b872dd", + "0x23b872dd", + "0x7f2eecc3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 39, @@ -42858,18 +41350,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 42, @@ -42878,19 +41366,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001b2" + "0x23b872dd", + "0x1", + "0x1b2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 434, @@ -42899,17 +41383,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 435, @@ -42918,17 +41398,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 436, @@ -42937,18 +41413,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 441, @@ -42957,19 +41429,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000003644e515" + "0x23b872dd", + "0x23b872dd", + "0x3644e515" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 442, @@ -42978,18 +41446,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 445, @@ -42998,19 +41462,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x23b872dd", + "0x1", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 641, @@ -43019,17 +41479,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 642, @@ -43038,17 +41494,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 643, @@ -43057,18 +41509,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 648, @@ -43077,19 +41525,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000002fc81e09" + "0x23b872dd", + "0x23b872dd", + "0x2fc81e09" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 649, @@ -43098,18 +41542,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 652, @@ -43118,19 +41558,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000002e3" + "0x23b872dd", + "0x1", + "0x2e3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 739, @@ -43139,17 +41575,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 740, @@ -43158,17 +41590,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 741, @@ -43177,18 +41605,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 746, @@ -43197,19 +41621,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000001a895266" + "0x23b872dd", + "0x23b872dd", + "0x1a895266" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 747, @@ -43218,18 +41638,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 750, @@ -43238,19 +41654,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000314" + "0x23b872dd", + "0x0", + "0x314" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 751, @@ -43259,17 +41671,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 752, @@ -43278,18 +41686,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 757, @@ -43298,19 +41702,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "000000000000000000000000000000000000000000000000000000001a895266" + "0x23b872dd", + "0x23b872dd", + "0x1a895266" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 758, @@ -43319,18 +41719,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 761, @@ -43339,19 +41735,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000041f" + "0x23b872dd", + "0x0", + "0x41f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 762, @@ -43360,17 +41752,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 763, @@ -43379,18 +41767,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 768, @@ -43399,19 +41783,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd", + "0x23b872dd", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 769, @@ -43420,18 +41800,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 772, @@ -43440,19 +41816,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000454" + "0x23b872dd", + "0x1", + "0x454" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1108, @@ -43461,17 +41833,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1109, @@ -43480,17 +41848,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1112, @@ -43499,18 +41863,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1" + "0x23b872dd", + "0x3f1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1114, @@ -43519,19 +41879,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x23b872dd", + "0x3f1", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1115, @@ -43540,20 +41896,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x23b872dd", + "0x3f1", + "0x4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1116, @@ -43562,21 +41914,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x23b872dd", + "0x3f1", + "0x4", + "0x4", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1117, @@ -43585,20 +41933,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x23b872dd", + "0x3f1", + "0x4", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1119, @@ -43607,21 +41951,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x23b872dd", + "0x3f1", + "0x4", + "0x60", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1120, @@ -43630,22 +41970,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x23b872dd", + "0x3f1", + "0x4", + "0x60", + "0x60", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1121, @@ -43654,21 +41990,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0x4", + "0x60", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1122, @@ -43677,21 +42009,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0x4", + "0x60", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1125, @@ -43700,22 +42028,18 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000046a" + "0x23b872dd", + "0x3f1", + "0x4", + "0x60", + "0x1", + "0x46a" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1130, @@ -43724,20 +42048,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x23b872dd", + "0x3f1", + "0x4", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1131, @@ -43746,20 +42066,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x23b872dd", + "0x3f1", + "0x4", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1132, @@ -43768,19 +42084,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x23b872dd", + "0x3f1", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1153, @@ -43789,20 +42101,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0x4", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1154, @@ -43811,21 +42119,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x23b872dd", + "0x3f1", + "0x4", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1155, @@ -43834,21 +42138,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0x4", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1156, @@ -43857,22 +42157,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0x4", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1157, @@ -43881,21 +42177,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0x4", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1158, @@ -43904,21 +42196,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1160, @@ -43927,22 +42215,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1161, @@ -43951,23 +42235,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x4", + "0x20", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1162, @@ -43976,22 +42256,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1163, @@ -44000,22 +42276,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1164, @@ -44024,22 +42296,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1165, @@ -44048,22 +42316,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1166, @@ -44072,21 +42336,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1167, @@ -44095,21 +42355,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1169, @@ -44118,22 +42374,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1170, @@ -44142,21 +42394,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1171, @@ -44165,21 +42413,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 1174, @@ -44188,22 +42432,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000010e9" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x10e9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4329, @@ -44212,21 +42452,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4330, @@ -44235,21 +42471,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4332, @@ -44258,12 +42490,12 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44283,23 +42515,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xf0d160dec1749afaf5a831668093b1431f7c8527" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4335, @@ -44308,24 +42535,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xf0d160dec1749afaf5a831668093b1431f7c8527", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4336, @@ -44334,24 +42556,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xf0d160dec1749afaf5a831668093b1431f7c8527" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4358, @@ -44360,25 +42577,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0000000000000000000000010000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xf0d160dec1749afaf5a831668093b1431f7c8527", + "0x10000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4359, @@ -44387,25 +42599,20 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000010000000000000000000000000000000000000000", - "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x10000000000000000000000000000000000000000", + "0xf0d160dec1749afaf5a831668093b1431f7c8527" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4360, @@ -44414,24 +42621,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4362, @@ -44440,25 +42642,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4363, @@ -44467,24 +42664,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4364, @@ -44493,24 +42685,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4367, @@ -44519,25 +42706,20 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001176" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x1", + "0x1176" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4470, @@ -44546,23 +42728,18 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4471, @@ -44571,23 +42748,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4472, @@ -44596,24 +42768,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4474, @@ -44622,25 +42789,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4475, @@ -44649,26 +42811,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4476, @@ -44677,27 +42834,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4477, @@ -44706,25 +42858,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4479, @@ -44733,26 +42880,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0", + "0x3" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4481, @@ -44761,27 +42903,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0", + "0x3", + "0x20" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4482, @@ -44790,25 +42927,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4484, @@ -44817,54 +42949,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4485, - "op": "SHA3", + "op": "KECCAK256", "gas": 130739, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x40", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" - } + ] }, { "pc": 4486, @@ -44873,14 +42995,14 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xdc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -44901,26 +43023,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4489, @@ -44929,27 +43045,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0", + "0xff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4490, @@ -44958,26 +43068,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4491, @@ -44986,26 +43090,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4494, @@ -45014,27 +43112,21 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000011df" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1", + "0x11df" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4575, @@ -45043,25 +43135,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4576, @@ -45070,25 +43156,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4597, @@ -45097,26 +43177,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4598, @@ -45125,27 +43199,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4599, @@ -45154,26 +43222,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4601, @@ -45182,27 +43244,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4602, @@ -45211,27 +43267,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4603, @@ -45240,28 +43290,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4604, @@ -45270,26 +43314,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4606, @@ -45298,27 +43336,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0", + "0x3" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4608, @@ -45327,28 +43359,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0", + "0x3", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4609, @@ -45357,26 +43383,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4611, @@ -45385,56 +43405,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4612, - "op": "SHA3", + "op": "KECCAK256", "gas": 128538, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x40", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4613, @@ -45443,14 +43451,14 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xb71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -45472,27 +43480,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4615, @@ -45501,28 +43502,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4616, @@ -45531,28 +43525,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4618, @@ -45561,29 +43548,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xff" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4619, @@ -45592,28 +43572,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4620, @@ -45622,28 +43595,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4623, @@ -45652,29 +43618,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001260" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1260" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4704, @@ -45683,27 +43642,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4705, @@ -45712,27 +43664,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4726, @@ -45741,28 +43686,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4727, @@ -45771,29 +43709,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4728, @@ -45802,28 +43733,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4730, @@ -45832,29 +43756,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4731, @@ -45863,29 +43780,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4732, @@ -45894,30 +43804,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4733, @@ -45926,28 +43829,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4735, @@ -45956,29 +43852,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x3" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4737, @@ -45987,30 +43876,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x3", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4738, @@ -46019,28 +43901,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4740, @@ -46049,60 +43924,46 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4741, - "op": "SHA3", + "op": "KECCAK256", "gas": 126331, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4742, @@ -46111,15 +43972,15 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -46142,29 +44003,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4744, @@ -46173,30 +44026,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4745, @@ -46205,30 +44050,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4747, @@ -46237,31 +44074,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0xff" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4748, @@ -46270,30 +44099,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4749, @@ -46302,30 +44123,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4752, @@ -46334,31 +44147,23 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000012e1" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x12e1" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4833, @@ -46367,29 +44172,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4834, @@ -46398,29 +44195,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4855, @@ -46429,30 +44218,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4856, @@ -46461,31 +44242,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4857, @@ -46494,30 +44267,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4859, @@ -46526,31 +44291,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4860, @@ -46559,31 +44316,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4861, @@ -46592,32 +44341,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4862, @@ -46626,30 +44367,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" + ], + "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4864, @@ -46658,31 +44391,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0xa" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4866, @@ -46691,32 +44416,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0xa", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4867, @@ -46725,32 +44442,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000000a" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0xa" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4868, @@ -46759,33 +44468,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0xa", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000003", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4869, @@ -46794,31 +44495,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "000000000000000000000000000000000000000000000000000000000000000a", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4871, @@ -46827,32 +44520,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "000000000000000000000000000000000000000000000000000000000000000a", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4872, @@ -46861,69 +44546,53 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "000000000000000000000000000000000000000000000000000000000000000a", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4873, - "op": "SHA3", + "op": "KECCAK256", "gas": 124115, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40", + "0x40", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "000000000000000000000000000000000000000000000000000000000000000a", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4874, @@ -46932,33 +44601,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "000000000000000000000000000000000000000000000000000000000000000a", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4875, @@ -46967,34 +44628,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "000000000000000000000000000000000000000000000000000000000000000a", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4876, @@ -47003,35 +44656,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "000000000000000000000000000000000000000000000000000000000000000a", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4877, @@ -47040,33 +44685,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "000000000000000000000000000000000000000000000000000000000000000a", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4878, @@ -47075,33 +44712,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "000000000000000000000000000000000000000000000000000000000000000a", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4879, @@ -47110,33 +44739,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", + "0x20" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "000000000000000000000000000000000000000000000000000000000000000a", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4880, @@ -47145,64 +44766,48 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4881, - "op": "SHA3", + "op": "KECCAK256", "gas": 124053, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4882, @@ -47211,16 +44816,16 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -47244,31 +44849,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4884, @@ -47277,32 +44873,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4885, @@ -47311,31 +44898,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4886, @@ -47344,31 +44922,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4889, @@ -47377,32 +44946,23 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000136a" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x136a" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4970, @@ -47411,30 +44971,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4971, @@ -47443,30 +44994,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4974, @@ -47475,31 +45017,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4975, @@ -47508,32 +45041,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4976, @@ -47542,33 +45066,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4977, @@ -47577,34 +45092,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 4980, @@ -47613,35 +45119,26 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003b21" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3b21" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15137, @@ -47650,34 +45147,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15138, @@ -47686,34 +45174,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15159, @@ -47722,35 +45201,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15160, @@ -47759,36 +45229,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15161, @@ -47797,35 +45258,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15164, @@ -47834,36 +45286,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000003b8d" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3b8d" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15245, @@ -47872,34 +45315,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15246, @@ -47908,34 +45342,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15267, @@ -47944,35 +45369,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15268, @@ -47981,36 +45397,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15269, @@ -48019,35 +45426,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15272, @@ -48056,36 +45454,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000003bf9" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x3bf9" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15353, @@ -48094,34 +45483,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15354, @@ -48130,34 +45510,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15375, @@ -48166,35 +45537,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15376, @@ -48203,36 +45565,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15377, @@ -48241,35 +45594,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15379, @@ -48278,36 +45622,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15380, @@ -48316,36 +45651,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15381, @@ -48354,37 +45680,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15382, @@ -48393,35 +45710,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15384, @@ -48430,36 +45738,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x9" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15386, @@ -48468,37 +45767,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x9", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15387, @@ -48507,35 +45797,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15389, @@ -48544,74 +45825,56 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15390, - "op": "SHA3", + "op": "KECCAK256", "gas": 121782, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15391, @@ -48620,20 +45883,20 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xe29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -48658,36 +45921,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15393, @@ -48696,37 +45949,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4234167", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15394, @@ -48735,36 +45978,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15395, @@ -48773,36 +46006,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15398, @@ -48811,37 +46034,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003c77" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x3c77" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15479, @@ -48850,35 +46063,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15480, @@ -48887,35 +46090,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15501, @@ -48924,36 +46117,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15502, @@ -48962,37 +46145,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15503, @@ -49001,36 +46174,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15505, @@ -49039,37 +46202,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15506, @@ -49078,37 +46231,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15507, @@ -49117,38 +46260,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15508, @@ -49157,36 +46290,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15510, @@ -49195,37 +46318,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x9" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15512, @@ -49234,38 +46347,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x9", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15513, @@ -49274,36 +46377,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15515, @@ -49312,76 +46405,56 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15516, - "op": "SHA3", + "op": "KECCAK256", "gas": 119581, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15517, @@ -49390,20 +46463,20 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xe29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -49428,36 +46501,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15521, @@ -49466,37 +46529,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4234167", + "0x3ca7" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15522, @@ -49505,37 +46558,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15523, @@ -49544,38 +46587,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15526, @@ -49584,39 +46617,29 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003d4c" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x3d4c" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15692, @@ -49625,38 +46648,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15693, @@ -49665,38 +46678,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15695, @@ -49705,39 +46708,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15698, @@ -49746,40 +46739,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15699, @@ -49788,41 +46771,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15700, @@ -49831,42 +46804,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15702, @@ -49875,43 +46838,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15703, @@ -49920,43 +46873,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15704, @@ -49965,44 +46908,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15706, @@ -50011,45 +46944,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x80", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15707, @@ -50058,44 +46981,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0xc0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15709, @@ -50104,45 +47017,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0xc0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15710, @@ -50151,43 +47054,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15711, @@ -50196,44 +47089,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15713, @@ -50242,45 +47125,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000001e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x80", + "0x1e" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15714, @@ -50289,48 +47162,36 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000001e", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x80", + "0x1e", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "00000000000000000000000000000000000000000000000000000000000000c0" + ] }, { "pc": 15715, @@ -50339,28 +47200,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -50368,17 +47229,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15717, @@ -50387,29 +47238,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x80", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -50417,17 +47268,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15718, @@ -50436,28 +47277,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -50465,17 +47306,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15751, @@ -50484,29 +47315,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0xa0", + "0x536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -50514,17 +47345,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15752, @@ -50533,49 +47354,38 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0xa0", + "0x536166654d6174683a207375627472616374696f6e206f766572666c6f770000", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000009", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001e", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "000000000000000000000000000000000000000000000000000000000000001e" + ] }, { "pc": 15753, @@ -50584,28 +47394,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -50614,17 +47424,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15754, @@ -50633,27 +47433,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -50662,17 +47462,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15757, @@ -50681,28 +47471,28 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000004576" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x4576" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -50711,17 +47501,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17782, @@ -50730,27 +47510,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -50759,17 +47539,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17783, @@ -50778,27 +47548,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -50807,17 +47577,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17785, @@ -50826,28 +47586,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -50856,48 +47616,38 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 17786, - "op": "DUP5", - "gas": 119329, - "gasCost": 3, - "depth": 4, - "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + ] + }, + { + "pc": 17786, + "op": "DUP5", + "gas": 119329, + "gasCost": 3, + "depth": 4, + "stack": [ + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x0", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -50906,17 +47656,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17787, @@ -50925,30 +47665,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x0", + "0x80", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -50957,17 +47697,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17788, @@ -50976,31 +47706,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x0", + "0x80", + "0x4234167", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51009,17 +47739,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17789, @@ -51028,30 +47748,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x0", + "0x80", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51060,17 +47780,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17790, @@ -51079,30 +47789,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x0", + "0x80", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51111,17 +47821,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17793, @@ -51130,31 +47830,31 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000461f" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x0", + "0x80", + "0x1", + "0x461f" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51163,17 +47863,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17951, @@ -51182,29 +47872,29 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x0", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51213,17 +47903,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17952, @@ -51232,29 +47912,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x0", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51263,17 +47943,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17953, @@ -51282,28 +47952,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51312,17 +47982,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17954, @@ -51331,27 +47991,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51360,17 +48020,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17955, @@ -51379,26 +48029,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51407,17 +48057,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17956, @@ -51426,26 +48066,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51454,17 +48094,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17957, @@ -51473,25 +48103,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x3d8e", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51500,17 +48130,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 17958, @@ -51519,25 +48139,25 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x0", + "0x3d8e" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51546,17 +48166,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15758, @@ -51565,24 +48175,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51591,17 +48201,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15759, @@ -51610,24 +48210,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ca7", + "0x4234167", + "0x4234167", + "0x0", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51636,17 +48236,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15760, @@ -51655,24 +48245,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ca7" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4234167", + "0x4234167", + "0x0", + "0x3ca7" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51681,17 +48271,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15761, @@ -51700,24 +48280,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x3ca7", + "0x4234167", + "0x0", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51726,17 +48306,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15762, @@ -51745,23 +48315,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x3ca7", + "0x4234167", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51770,17 +48340,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15763, @@ -51789,22 +48349,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ca7", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x3ca7", + "0x4234167" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51813,17 +48373,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15764, @@ -51832,21 +48382,21 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ca7" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x3ca7" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51855,17 +48405,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15527, @@ -51874,20 +48414,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51896,17 +48436,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15528, @@ -51915,20 +48445,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51937,17 +48467,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15549, @@ -51956,21 +48476,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -51979,17 +48499,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15550, @@ -51998,22 +48508,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52022,17 +48532,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15551, @@ -52041,23 +48541,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52066,17 +48566,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15552, @@ -52085,22 +48575,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52109,17 +48599,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15554, @@ -52128,23 +48608,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52153,17 +48633,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15555, @@ -52172,23 +48642,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52197,17 +48667,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15556, @@ -52216,24 +48676,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52242,17 +48702,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15557, @@ -52261,22 +48711,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52285,17 +48735,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15559, @@ -52304,23 +48744,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x9" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52329,17 +48769,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15561, @@ -52348,24 +48778,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x9", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52374,17 +48804,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15562, @@ -52393,22 +48813,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52417,17 +48837,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15564, @@ -52436,23 +48846,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52461,17 +48871,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15565, @@ -52480,24 +48880,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52506,44 +48906,34 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15566, - "op": "SHA3", + "op": "KECCAK256", "gas": 119216, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x40", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52552,17 +48942,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15567, @@ -52571,24 +48951,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0xe29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52597,17 +48977,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15568, @@ -52616,24 +48986,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xe29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52642,17 +49012,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15569, @@ -52661,24 +49021,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xe29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52687,17 +49047,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000004234167", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + ] }, { "pc": 15570, @@ -52706,24 +49056,24 @@ export const trace: any = JSON.parse(` "gasCost": 2900, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0", + "0xe29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52742,7 +49092,8 @@ export const trace: any = JSON.parse(` "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 4800 }, { "pc": 15571, @@ -52751,22 +49102,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52776,16 +49127,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15572, @@ -52794,22 +49136,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52819,16 +49161,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15573, @@ -52837,23 +49170,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52863,16 +49196,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15574, @@ -52881,22 +49205,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52906,16 +49230,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15575, @@ -52924,23 +49239,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -52950,39 +49265,30 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15576, - "op": "SHA3", + "op": "KECCAK256", "gas": 116250, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x40", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -52992,16 +49298,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15577, @@ -53010,20 +49307,20 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xbab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53043,7 +49340,8 @@ export const trace: any = JSON.parse(` "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 4800 }, { "pc": 15578, @@ -53052,20 +49350,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53075,17 +49373,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15581, @@ -53094,21 +49382,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000003ce3" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c860714d6e", + "0x3ce3" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53118,17 +49406,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15582, @@ -53137,21 +49415,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53161,17 +49439,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15583, @@ -53180,22 +49448,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53205,17 +49473,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15586, @@ -53224,23 +49482,23 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003e26" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167", + "0x3e26" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53250,17 +49508,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15910, @@ -53269,22 +49517,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53294,17 +49542,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15911, @@ -53313,22 +49551,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53338,17 +49576,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15913, @@ -53357,23 +49585,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53383,17 +49611,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15914, @@ -53402,24 +49620,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53429,17 +49647,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15915, @@ -53448,25 +49656,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x4234167" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53476,17 +49684,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15916, @@ -53495,24 +49693,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167", + "0x0", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53522,17 +49720,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15917, @@ -53541,25 +49729,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167", + "0x0", + "0x4c864948ed5", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53569,17 +49757,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15918, @@ -53588,26 +49766,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167", + "0x0", + "0x4c864948ed5", + "0x4c860714d6e", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53617,17 +49795,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15919, @@ -53636,25 +49804,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167", + "0x0", + "0x4c864948ed5", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53664,17 +49832,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15920, @@ -53683,25 +49841,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167", + "0x0", + "0x4c864948ed5", + "0x1" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53711,17 +49869,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15923, @@ -53730,26 +49878,26 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003d8e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167", + "0x0", + "0x4c864948ed5", + "0x1", + "0x3d8e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53759,17 +49907,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15758, @@ -53778,24 +49916,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167", + "0x0", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53805,17 +49943,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15759, @@ -53824,24 +49952,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3ce3", + "0x4c860714d6e", + "0x4234167", + "0x0", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53851,17 +49979,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15760, @@ -53870,24 +49988,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ce3" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0x4c860714d6e", + "0x4234167", + "0x0", + "0x3ce3" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53897,17 +50015,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15761, @@ -53916,24 +50024,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0x3ce3", + "0x4234167", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53943,17 +50051,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15762, @@ -53962,23 +50060,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0x3ce3", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -53988,17 +50086,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15763, @@ -54007,22 +50095,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000003ce3", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0x3ce3", + "0x4234167" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54032,17 +50120,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15764, @@ -54051,21 +50129,21 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000003ce3" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0x3ce3" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54075,17 +50153,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15587, @@ -54094,20 +50162,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54117,17 +50185,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15588, @@ -54136,20 +50194,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54159,17 +50217,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15609, @@ -54178,21 +50226,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54202,17 +50250,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15610, @@ -54221,22 +50259,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54246,17 +50284,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15611, @@ -54265,23 +50293,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54291,17 +50319,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15612, @@ -54310,22 +50328,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54335,17 +50353,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15614, @@ -54354,23 +50362,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54380,17 +50388,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15615, @@ -54399,24 +50397,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54426,17 +50424,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15616, @@ -54445,25 +50433,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54473,17 +50461,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15617, @@ -54492,23 +50470,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54518,17 +50496,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15619, @@ -54537,24 +50505,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x9" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54564,17 +50532,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15621, @@ -54583,25 +50541,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x9", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54611,17 +50569,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15622, @@ -54630,25 +50578,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x9" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54658,17 +50606,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15623, @@ -54677,26 +50615,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x9", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54706,17 +50644,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15624, @@ -54725,24 +50653,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54752,17 +50680,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15626, @@ -54771,25 +50689,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54799,17 +50717,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15627, @@ -54818,25 +50726,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54846,17 +50754,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15628, @@ -54865,26 +50763,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0x20", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54894,45 +50792,35 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15629, - "op": "SHA3", + "op": "KECCAK256", "gas": 113977, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0x20", + "0x40", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54942,17 +50830,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15630, @@ -54961,25 +50839,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0x20", + "0xbab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -54989,17 +50867,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15631, @@ -55008,25 +50876,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xbab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0x20", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55036,17 +50904,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15632, @@ -55055,25 +50913,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xbab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0x4c864948ed5", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55083,17 +50941,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c860714d6e", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15633, @@ -55102,25 +50950,25 @@ export const trace: any = JSON.parse(` "gasCost": 2900, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0x4c864948ed5", + "0xbab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55140,7 +50988,8 @@ export const trace: any = JSON.parse(` "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 4800 }, { "pc": 15634, @@ -55149,23 +50998,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55175,17 +51024,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15635, @@ -55194,24 +51033,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55221,17 +51060,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15636, @@ -55240,44 +51069,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0xc0" + ], + "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000009", + "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15637, @@ -55286,25 +51105,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0xc0", + "0x4234167" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55314,17 +51133,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15638, @@ -55333,26 +51142,26 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0xc0", + "0x4234167", + "0xc0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55360,20 +51169,9 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000000" + "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15639, @@ -55382,24 +51180,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0xc0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55410,17 +51208,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15640, @@ -55429,24 +51217,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xc0", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55457,17 +51245,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15641, @@ -55476,24 +51254,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xc0", + "0xc0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55504,17 +51282,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15642, @@ -55523,24 +51291,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0xc0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55551,17 +51319,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15643, @@ -55570,24 +51328,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0xc0", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55598,17 +51356,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15644, @@ -55617,24 +51365,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x20", + "0xc0", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55645,17 +51393,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15645, @@ -55664,25 +51402,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x20", + "0xc0", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55693,17 +51431,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15646, @@ -55712,24 +51440,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x20", + "0xc0", + "0xc0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55740,17 +51468,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15647, @@ -55759,24 +51477,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc0", + "0xc0", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55787,17 +51505,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15680, @@ -55806,25 +51514,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc0", + "0xc0", + "0x20", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55835,17 +51543,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15681, @@ -55854,25 +51552,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xc0", + "0x20", + "0xc0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55883,17 +51581,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15682, @@ -55902,25 +51590,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xc0", + "0x20", + "0xc0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55931,17 +51619,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15683, @@ -55950,26 +51628,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xc0", + "0x20", + "0xc0", + "0xc0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -55980,17 +51658,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15684, @@ -55999,26 +51667,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xc0", + "0x20", + "0xc0", + "0xc0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56029,17 +51697,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15685, @@ -56048,25 +51706,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xc0", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56077,17 +51735,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15686, @@ -56096,24 +51744,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xc0", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56124,17 +51772,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15687, @@ -56143,24 +51781,24 @@ export const trace: any = JSON.parse(` "gasCost": 1756, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x20", + "0xc0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56171,17 +51809,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15688, @@ -56190,19 +51818,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56213,17 +51841,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15689, @@ -56232,18 +51850,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56254,17 +51872,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15690, @@ -56273,17 +51881,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56294,17 +51902,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15691, @@ -56313,16 +51911,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000001375" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1375" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56333,17 +51931,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4981, @@ -56352,15 +51940,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56371,17 +51959,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4982, @@ -56390,15 +51968,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56409,17 +51987,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5003, @@ -56428,16 +51996,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56448,17 +52016,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5004, @@ -56467,17 +52025,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56488,17 +52046,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5005, @@ -56507,16 +52055,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56527,17 +52075,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5007, @@ -56546,17 +52084,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56567,17 +52105,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5008, @@ -56586,17 +52114,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56607,17 +52135,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5009, @@ -56626,18 +52144,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -56648,17 +52166,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5010, @@ -56667,16 +52175,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -56687,17 +52195,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5012, @@ -56706,17 +52204,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0xa" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -56727,17 +52225,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5014, @@ -56746,18 +52234,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0xa", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -56768,17 +52256,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5015, @@ -56787,18 +52265,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000000a" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0xa" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -56809,17 +52287,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5016, @@ -56828,19 +52296,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0xa", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -56851,17 +52319,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5017, @@ -56870,17 +52328,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -56891,17 +52349,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5019, @@ -56910,18 +52358,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -56932,17 +52380,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5020, @@ -56951,19 +52389,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -56974,39 +52412,29 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5021, - "op": "SHA3", + "op": "KECCAK256", "gas": 109144, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40", + "0x40", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -57017,17 +52445,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5022, @@ -57036,19 +52454,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -57059,17 +52477,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5023, @@ -57078,20 +52486,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -57102,17 +52510,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5024, @@ -57121,21 +52519,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -57146,17 +52544,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5025, @@ -57165,19 +52553,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57188,17 +52576,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5026, @@ -57207,19 +52585,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x20", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57230,17 +52608,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5027, @@ -57249,19 +52617,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", + "0x20" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57272,17 +52640,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5028, @@ -57291,17 +52649,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57312,36 +52670,26 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5029, - "op": "SHA3", + "op": "KECCAK256", "gas": 109082, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57352,17 +52700,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5030, @@ -57371,16 +52709,16 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57401,7 +52739,8 @@ export const trace: any = JSON.parse(` "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 4800 }, { "pc": 5031, @@ -57410,16 +52749,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57430,17 +52769,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5034, @@ -57449,17 +52778,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000013b0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x13b0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57470,17 +52799,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5035, @@ -57489,17 +52808,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57510,17 +52829,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5036, @@ -57529,18 +52838,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57551,17 +52860,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5039, @@ -57570,19 +52869,19 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003d4c" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x3d4c" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57593,17 +52892,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15692, @@ -57612,18 +52901,18 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57634,17 +52923,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15693, @@ -57653,18 +52932,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57675,17 +52954,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15695, @@ -57694,19 +52963,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57717,17 +52986,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15698, @@ -57736,20 +52995,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57760,17 +53019,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15699, @@ -57779,21 +53028,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57804,17 +53053,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15700, @@ -57823,22 +53062,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57849,17 +53088,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15702, @@ -57868,23 +53097,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57895,17 +53124,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15703, @@ -57914,23 +53133,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57941,17 +53160,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15704, @@ -57960,24 +53169,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -57988,17 +53197,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15706, @@ -58007,25 +53206,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0xc0", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58036,17 +53235,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15707, @@ -58055,24 +53244,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x100" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58083,17 +53272,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15709, @@ -58102,25 +53281,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x100", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58131,17 +53310,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15710, @@ -58150,23 +53319,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58177,17 +53346,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15711, @@ -58196,24 +53355,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58224,17 +53383,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15713, @@ -58243,25 +53392,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000000000000000000000000000000000000000001e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0xc0", + "0x1e" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58272,17 +53421,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15714, @@ -58291,26 +53430,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000000000000000000000000000000000000000001e", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0xc0", + "0x1e", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58321,17 +53460,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000004234167" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15715, @@ -58340,24 +53469,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58368,17 +53497,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "000000000000000000000000000000000000000000000000000000000000001e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15717, @@ -58387,25 +53506,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0xc0", + "0x20" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58416,17 +53535,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "000000000000000000000000000000000000000000000000000000000000001e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15718, @@ -58435,24 +53544,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0xe0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58463,17 +53572,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "000000000000000000000000000000000000000000000000000000000000001e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15751, @@ -58482,25 +53581,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0xe0", + "0x536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58511,17 +53610,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "000000000000000000000000000000000000000000000000000000000000001e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15752, @@ -58530,26 +53619,26 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0xe0", + "0x536166654d6174683a207375627472616374696f6e206f766572666c6f770000", + "0xe0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58558,20 +53647,9 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "000000000000000000000000000000000000000000000000000000000000001e", - "0000000000000000000000000000000000000000000000000000000000000000" + "000000000000000000000000000000000000000000000000000000000000001e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15753, @@ -58580,24 +53658,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0xe0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58609,17 +53687,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15754, @@ -58628,23 +53696,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58656,17 +53724,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15757, @@ -58675,24 +53733,24 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000004576" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x4576" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58704,17 +53762,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17782, @@ -58723,23 +53771,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58751,17 +53799,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17783, @@ -58770,23 +53808,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58798,17 +53836,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17785, @@ -58817,24 +53845,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58846,17 +53874,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17786, @@ -58865,25 +53883,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x0", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58895,17 +53913,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17787, @@ -58914,26 +53922,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x0", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58945,17 +53953,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17788, @@ -58964,27 +53962,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x0", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -58996,17 +53994,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17789, @@ -59015,26 +54003,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x0", + "0xc0", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59046,17 +54034,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17790, @@ -59065,26 +54043,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x0", + "0xc0", + "0x1" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59096,17 +54074,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17793, @@ -59115,27 +54083,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000461f" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x0", + "0xc0", + "0x1", + "0x461f" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59147,17 +54115,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17951, @@ -59166,25 +54124,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x0", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59196,17 +54154,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17952, @@ -59215,25 +54163,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x0", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59245,17 +54193,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17953, @@ -59264,24 +54202,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59293,17 +54231,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17954, @@ -59312,23 +54240,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0xc0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59340,17 +54268,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17955, @@ -59359,22 +54277,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59386,17 +54304,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17956, @@ -59405,22 +54313,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "0000000000000000000000000000000000000000000000000000000004234167", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0x4234167", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59432,17 +54340,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17957, @@ -59451,21 +54349,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003d8e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x3d8e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59477,17 +54375,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17958, @@ -59496,21 +54384,21 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000003d8e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x3d8e" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59522,17 +54410,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15758, @@ -59541,20 +54419,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59566,17 +54444,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15759, @@ -59585,20 +54453,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000013b0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x13b0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59610,17 +54478,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15760, @@ -59629,20 +54487,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000013b0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4234167", + "0x0", + "0x13b0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59654,17 +54512,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15761, @@ -59673,20 +54521,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "00000000000000000000000000000000000000000000000000000000000013b0", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x13b0", + "0x4234167", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59698,17 +54546,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15762, @@ -59717,19 +54555,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "00000000000000000000000000000000000000000000000000000000000013b0", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x13b0", + "0x4234167", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59741,17 +54579,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15763, @@ -59760,18 +54588,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "00000000000000000000000000000000000000000000000000000000000013b0", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x13b0", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59783,17 +54611,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15764, @@ -59802,17 +54620,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "00000000000000000000000000000000000000000000000000000000000013b0" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x13b0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59824,17 +54642,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5040, @@ -59843,16 +54651,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59864,17 +54672,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5041, @@ -59883,18 +54681,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" - ], - "memory": [ + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98" + ], + "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", "0000000000000000000000000000000000000000000000000000000000000100", @@ -59904,17 +54702,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5062, @@ -59923,17 +54711,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59945,17 +54733,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5063, @@ -59964,18 +54742,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -59987,17 +54765,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5064, @@ -60006,17 +54774,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -60028,17 +54796,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5066, @@ -60047,18 +54805,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -60070,17 +54828,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5067, @@ -60089,18 +54837,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -60112,17 +54860,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5068, @@ -60131,19 +54869,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -60155,17 +54893,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5069, @@ -60174,17 +54902,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -60196,17 +54924,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5071, @@ -60215,18 +54933,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0xa" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -60238,17 +54956,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5073, @@ -60257,19 +54965,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0xa", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -60281,17 +54989,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5074, @@ -60300,19 +54998,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000000a" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x20", + "0xa" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -60324,17 +55022,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5075, @@ -60343,20 +55031,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x20", + "0xa", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -60368,17 +55056,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5076, @@ -60387,18 +55065,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -60410,17 +55088,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5078, @@ -60429,19 +55097,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x20", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -60453,17 +55121,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5079, @@ -60472,20 +55130,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x20", + "0x40", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -60497,40 +55155,30 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5080, - "op": "SHA3", + "op": "KECCAK256", "gas": 108720, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x20", + "0x40", + "0x40", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -60542,17 +55190,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5081, @@ -60561,20 +55199,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x20", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -60586,17 +55224,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5082, @@ -60605,21 +55233,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x20", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -60631,17 +55259,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5083, @@ -60650,22 +55268,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x20", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -60677,17 +55295,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5084, @@ -60696,20 +55304,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x20", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -60721,17 +55329,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5085, @@ -60740,20 +55338,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x20", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -60765,17 +55363,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5086, @@ -60784,20 +55372,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x40", + "0x7e7145a60330ef86941341358745708a4f798252f70bfb1b1405a2ba5bb7d217", + "0x20" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -60809,17 +55397,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5087, @@ -60828,18 +55406,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x0", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -60851,37 +55429,27 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5088, - "op": "SHA3", + "op": "KECCAK256", "gas": 108658, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x40", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -60893,17 +55461,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5089, @@ -60912,17 +55470,17 @@ export const trace: any = JSON.parse(` "gasCost": 2900, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", + "0x9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -60944,7 +55502,8 @@ export const trace: any = JSON.parse(` "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 4800 }, { "pc": 5090, @@ -60953,15 +55512,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -60973,17 +55532,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5092, @@ -60992,16 +55541,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61013,17 +55562,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5093, @@ -61032,16 +55571,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61053,17 +55592,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5094, @@ -61072,15 +55601,15 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61092,17 +55621,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5095, @@ -61111,14 +55630,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61130,17 +55649,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5096, @@ -61149,13 +55658,13 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61167,17 +55676,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5097, @@ -61186,12 +55685,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "00000000000000000000000000000000000000000000000000000000000003f1", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x3f1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61203,17 +55702,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5098, @@ -61222,12 +55711,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003f1" + "0x23b872dd", + "0x1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x3f1" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61239,17 +55728,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5099, @@ -61258,12 +55737,12 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x23b872dd", + "0x1", + "0x3f1", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61275,17 +55754,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5100, @@ -61294,11 +55763,11 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x23b872dd", + "0x1", + "0x3f1", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61310,17 +55779,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5101, @@ -61329,10 +55788,10 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003f1", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x23b872dd", + "0x1", + "0x3f1", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61344,17 +55803,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5102, @@ -61363,9 +55812,9 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003f1" + "0x23b872dd", + "0x1", + "0x3f1" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61377,17 +55826,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1009, @@ -61396,8 +55835,8 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x1" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61409,17 +55848,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1010, @@ -61428,8 +55857,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x1" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61441,17 +55870,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1012, @@ -61460,9 +55879,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x1", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61474,17 +55893,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1013, @@ -61493,10 +55902,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x1", + "0x40", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61508,17 +55917,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1014, @@ -61527,10 +55926,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x23b872dd", + "0x1", + "0x40", + "0x100" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61542,17 +55941,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1015, @@ -61561,10 +55950,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x100", + "0x40", + "0x1" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61576,17 +55965,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1016, @@ -61595,10 +55974,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x100", + "0x40", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61610,17 +55989,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1017, @@ -61629,10 +55998,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x100", + "0x40", + "0x1" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61644,17 +56013,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1018, @@ -61663,11 +56022,11 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x23b872dd", + "0x100", + "0x40", + "0x1", + "0x100" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61677,20 +56036,9 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000001e", "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "000000000000000000000000000000000000000000000000000000000000001e", - "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", - "0000000000000000000000000000000000000000000000000000000000000000" + "536166654d6174683a207375627472616374696f6e206f766572666c6f770000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1019, @@ -61699,9 +56047,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x23b872dd", + "0x100", + "0x40" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61714,17 +56062,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1020, @@ -61733,9 +56071,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x23b872dd", + "0x100", + "0x100" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61748,17 +56086,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1021, @@ -61767,9 +56095,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x23b872dd", + "0x100", + "0x100" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61782,17 +56110,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1022, @@ -61801,10 +56119,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x23b872dd", + "0x100", + "0x100", + "0x100" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61817,17 +56135,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1023, @@ -61836,10 +56144,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x23b872dd", + "0x100", + "0x100", + "0x100" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61852,17 +56160,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1024, @@ -61871,9 +56169,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x100", + "0x0" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61886,17 +56184,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1026, @@ -61905,10 +56193,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x100", + "0x0", + "0x20" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61921,17 +56209,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1027, @@ -61940,9 +56218,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x100", + "0x20" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61955,17 +56233,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1028, @@ -61974,9 +56242,9 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x23b872dd", + "0x20", + "0x100" ], "memory": [ "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", @@ -61989,17 +56257,7 @@ export const trace: any = JSON.parse(` "536166654d6174683a207375627472616374696f6e206f766572666c6f770000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1681, @@ -62008,11 +56266,11 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1" ], "memory": [ "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", @@ -62020,17 +56278,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1682, @@ -62039,12 +56287,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x20" ], "memory": [ "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", @@ -62052,17 +56300,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1684, @@ -62071,13 +56309,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x20", + "0x0" ], "memory": [ "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", @@ -62085,17 +56323,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1685, @@ -62104,14 +56332,14 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x20", + "0x0", + "0x0" ], "memory": [ "23b872dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", @@ -62119,17 +56347,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1686, @@ -62138,11 +56356,11 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000001", @@ -62150,17 +56368,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1687, @@ -62169,12 +56377,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000001", @@ -62182,17 +56390,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1689, @@ -62201,13 +56399,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000001", @@ -62215,17 +56413,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1690, @@ -62234,14 +56422,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000001", @@ -62249,17 +56437,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1691, @@ -62268,13 +56446,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000001", @@ -62282,17 +56460,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1694, @@ -62301,14 +56469,14 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006a3" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x0", + "0x6a3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000001", @@ -62316,17 +56484,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1695, @@ -62335,12 +56493,12 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000001", @@ -62348,17 +56506,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1696, @@ -62367,13 +56515,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000001", @@ -62381,17 +56529,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1698, @@ -62400,14 +56538,14 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000023b872dd", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x23b872dd", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000001", @@ -62415,17 +56553,7 @@ export const trace: any = JSON.parse(` "7c2e411e00000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15346, @@ -62434,30 +56562,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x225", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -62480,17 +56608,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15347, @@ -62499,30 +56617,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000225", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x225", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -62545,17 +56663,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15348, @@ -62564,29 +56672,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000225" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x225" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -62609,17 +56717,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15349, @@ -62628,28 +56726,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -62672,17 +56770,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15350, @@ -62691,29 +56779,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -62736,17 +56824,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15351, @@ -62755,30 +56833,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -62801,17 +56879,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15353, @@ -62820,31 +56888,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -62867,17 +56935,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15354, @@ -62886,32 +56944,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -62934,17 +56992,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15355, @@ -62953,31 +57001,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63000,17 +57048,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15358, @@ -63019,32 +57057,32 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003c20" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20", + "0x0", + "0x3c20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63067,17 +57105,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15359, @@ -63086,30 +57114,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63132,17 +57160,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15361, @@ -63151,31 +57169,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63198,17 +57216,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15362, @@ -63217,31 +57225,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63264,17 +57272,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15363, @@ -63283,31 +57281,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63330,17 +57328,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15364, @@ -63349,30 +57337,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63395,17 +57383,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15366, @@ -63414,31 +57392,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63461,17 +57439,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15367, @@ -63480,31 +57448,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63527,17 +57495,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15369, @@ -63546,32 +57504,32 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63594,17 +57552,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15370, @@ -63613,33 +57561,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63662,17 +57610,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15371, @@ -63681,32 +57619,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000005f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x5f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63729,17 +57667,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15372, @@ -63748,31 +57676,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63795,17 +57723,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15373, @@ -63814,32 +57732,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x40", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63862,17 +57780,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15374, @@ -63881,31 +57789,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63928,17 +57836,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15376, @@ -63947,32 +57845,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x201", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -63995,17 +57893,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15377, @@ -64014,30 +57902,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64060,17 +57948,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15378, @@ -64079,31 +57957,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64126,17 +58004,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15379, @@ -64145,32 +58013,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x20", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64193,17 +58061,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15380, @@ -64212,30 +58070,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64258,17 +58116,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15381, @@ -64277,31 +58125,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64324,17 +58172,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15383, @@ -64343,32 +58181,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64391,17 +58229,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15385, @@ -64410,33 +58238,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x20", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64459,17 +58287,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15386, @@ -64478,34 +58296,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x20", + "0x0", + "0x20", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64528,17 +58346,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15387, @@ -64547,33 +58355,33 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001e1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x20", + "0x0", + "0x1e1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64596,17 +58404,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15388, @@ -64615,30 +58413,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64661,17 +58459,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15391, @@ -64680,31 +58468,31 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000003c25" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20", + "0x3c25" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64727,17 +58515,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15397, @@ -64746,30 +58524,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64792,17 +58570,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15398, @@ -64811,30 +58579,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64857,17 +58625,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15399, @@ -64876,29 +58634,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x0", + "0x1", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64921,17 +58679,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15400, @@ -64940,29 +58688,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x1c1", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -64985,17 +58733,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15401, @@ -65004,28 +58742,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x1c1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65048,17 +58786,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15402, @@ -65067,28 +58795,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65111,17 +58839,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15403, @@ -65130,27 +58848,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65173,17 +58891,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15404, @@ -65192,28 +58900,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65236,17 +58944,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15405, @@ -65255,29 +58953,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65300,17 +58998,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15406, @@ -65319,29 +59007,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65364,17 +59052,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15409, @@ -65383,30 +59061,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003c53" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1", + "0x0", + "0x3c53" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65429,17 +59107,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15410, @@ -65448,28 +59116,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65492,17 +59160,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15411, @@ -65511,27 +59169,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65554,17 +59212,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15412, @@ -65573,28 +59221,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65617,17 +59265,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15413, @@ -65636,28 +59274,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65680,17 +59318,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15414, @@ -65699,28 +59327,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65743,17 +59371,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15415, @@ -65762,29 +59380,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65807,17 +59425,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15418, @@ -65826,30 +59434,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003c53" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x0", + "0x0", + "0x3c53" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65872,17 +59480,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15419, @@ -65891,28 +59489,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65935,17 +59533,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15420, @@ -65954,27 +59542,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -65997,17 +59585,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15421, @@ -66016,28 +59594,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66060,17 +59638,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15422, @@ -66079,29 +59647,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1c1", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66124,17 +59692,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15424, @@ -66143,30 +59701,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1c1", + "0x1c1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66189,17 +59747,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15425, @@ -66208,29 +59756,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1c1", + "0x1e1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66253,17 +59801,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15426, @@ -66272,29 +59810,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1e1", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66317,17 +59855,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15427, @@ -66336,29 +59864,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1e1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66381,17 +59909,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15429, @@ -66400,30 +59918,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1e1", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66446,17 +59964,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15430, @@ -66465,31 +59973,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1e1", + "0x20", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66512,17 +60020,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15431, @@ -66531,30 +60029,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1e1", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66577,17 +60075,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15432, @@ -66596,30 +60084,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1e1", + "0x20", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66642,17 +60130,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15435, @@ -66661,31 +60139,31 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003c50" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1e1", + "0x20", + "0x1", + "0x3c50" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66708,17 +60186,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15440, @@ -66727,29 +60195,29 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1e1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66772,17 +60240,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15441, @@ -66791,29 +60249,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1e1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66836,17 +60294,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15442, @@ -66855,28 +60303,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "00000000000000000000000000000000000000000000000000000000000001e1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1e1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66899,17 +60347,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15443, @@ -66918,28 +60356,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -66962,17 +60400,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15444, @@ -66981,28 +60409,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67025,17 +60453,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 15447, @@ -67044,29 +60462,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000bb6" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1", + "0x1", + "0xbb6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67089,17 +60507,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2998, @@ -67108,27 +60516,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67151,17 +60559,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2999, @@ -67170,27 +60568,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1", + "0x1c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67213,17 +60611,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3000, @@ -67232,26 +60620,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67274,17 +60662,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3001, @@ -67293,25 +60671,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67334,17 +60712,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3002, @@ -67353,24 +60721,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67393,17 +60761,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3003, @@ -67412,23 +60770,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67451,17 +60809,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3004, @@ -67470,22 +60818,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67508,17 +60856,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3005, @@ -67527,21 +60865,21 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000c55" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0xc55" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67564,17 +60902,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3157, @@ -67583,20 +60911,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67619,17 +60947,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3158, @@ -67638,20 +60956,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67674,17 +60992,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3159, @@ -67693,19 +61001,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67728,17 +61036,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3160, @@ -67747,18 +61045,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67781,17 +61079,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3161, @@ -67800,17 +61088,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67833,17 +61121,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3162, @@ -67852,16 +61130,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001036" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1036" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67884,17 +61162,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4150, @@ -67903,15 +61171,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67934,17 +61202,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4151, @@ -67953,15 +61211,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -67984,17 +61242,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4172, @@ -68003,16 +61251,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68035,17 +61283,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4173, @@ -68054,17 +61292,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68087,17 +61325,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4174, @@ -68106,16 +61334,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68138,17 +61366,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4176, @@ -68157,17 +61375,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68190,17 +61408,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4177, @@ -68209,16 +61417,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68241,17 +61449,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4178, @@ -68260,16 +61458,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68292,17 +61490,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4181, @@ -68311,17 +61499,17 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000105d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1", + "0x105d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68344,17 +61532,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4189, @@ -68363,15 +61541,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68394,17 +61572,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4190, @@ -68413,15 +61581,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68444,17 +61612,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4211, @@ -68463,16 +61621,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68495,17 +61653,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4212, @@ -68514,17 +61662,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68547,17 +61695,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4213, @@ -68566,16 +61704,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68598,17 +61736,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4215, @@ -68617,17 +61745,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68650,17 +61778,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4216, @@ -68669,16 +61787,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68701,17 +61819,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4217, @@ -68720,16 +61828,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68752,17 +61860,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4220, @@ -68771,17 +61869,17 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x1", + "0x1080" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68804,17 +61902,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4224, @@ -68823,15 +61911,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68854,17 +61942,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4225, @@ -68873,15 +61951,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68904,17 +61982,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4227, @@ -68923,16 +61991,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -68955,17 +62023,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4228, @@ -68974,17 +62032,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69007,17 +62065,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4229, @@ -69026,18 +62074,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69060,17 +62108,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4262, @@ -69079,19 +62117,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x2", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69114,17 +62152,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4263, @@ -69133,20 +62161,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x2", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69169,17 +62197,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4264, @@ -69188,19 +62206,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69223,17 +62241,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4265, @@ -69242,22 +62250,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x2", + "0x1", + "0x2" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000201", @@ -69278,17 +62286,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4266, @@ -69297,21 +62295,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x2", + "0x1", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69334,17 +62332,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4267, @@ -69353,20 +62341,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x2", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69389,17 +62377,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4270, @@ -69408,21 +62386,21 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000010b0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x2", + "0x1", + "0x1", + "0x10b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69445,17 +62423,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4272, @@ -69464,19 +62432,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69499,17 +62467,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4273, @@ -69518,19 +62476,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69553,17 +62511,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4274, @@ -69572,19 +62520,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x1", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69607,17 +62555,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4275, @@ -69626,18 +62564,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69660,17 +62598,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4277, @@ -69679,19 +62607,19 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69714,17 +62642,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4278, @@ -69733,18 +62651,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69767,17 +62685,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4279, @@ -69786,17 +62694,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69819,17 +62727,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4281, @@ -69838,18 +62736,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xc4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69872,17 +62770,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4282, @@ -69891,19 +62779,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xc4", + "0x20", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69926,17 +62814,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4283, @@ -69945,18 +62823,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xc4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -69979,17 +62857,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4284, @@ -69998,18 +62866,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xe4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70032,17 +62900,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4287, @@ -70051,19 +62909,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000010c5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xe4", + "0xc4", + "0x10c5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70086,17 +62944,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4288, @@ -70105,19 +62953,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xc4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70140,17 +62988,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4289, @@ -70159,19 +62997,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70194,17 +63032,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4292, @@ -70213,20 +63041,20 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000004feb" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x4feb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70249,17 +63077,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20459, @@ -70268,19 +63086,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70303,17 +63121,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20460, @@ -70322,19 +63130,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70357,17 +63165,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20462, @@ -70376,20 +63174,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70412,17 +63210,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20464, @@ -70431,21 +63219,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70468,17 +63256,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20465, @@ -70487,22 +63265,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0x20", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70525,17 +63303,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20466, @@ -70544,23 +63312,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0x20", + "0xc4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70583,17 +63351,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20467, @@ -70602,22 +63360,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70640,17 +63398,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20468, @@ -70659,21 +63407,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70696,17 +63444,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20469, @@ -70715,21 +63453,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70752,17 +63490,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20472, @@ -70771,22 +63499,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004ffc" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0x1", + "0x4ffc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70809,17 +63537,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20476, @@ -70828,20 +63546,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70864,17 +63582,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20477, @@ -70883,20 +63591,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70919,17 +63627,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20478, @@ -70938,21 +63636,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -70975,17 +63673,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20479, @@ -70994,21 +63682,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71031,17 +63719,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20482, @@ -71050,22 +63728,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71088,17 +63766,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20483, @@ -71107,23 +63775,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71146,17 +63814,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20486, @@ -71165,24 +63823,24 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005f52" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5f52" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71205,17 +63863,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24402, @@ -71224,23 +63872,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71263,17 +63911,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24403, @@ -71282,23 +63920,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71321,17 +63959,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24424, @@ -71340,24 +63968,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71380,17 +64008,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24425, @@ -71399,25 +64017,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71440,17 +64058,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24426, @@ -71459,24 +64067,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71499,17 +64107,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24427, @@ -71518,25 +64116,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71559,17 +64157,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24428, @@ -71578,24 +64166,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71618,17 +64206,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24431, @@ -71637,25 +64215,25 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1", + "0x1479" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71678,17 +64256,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5241, @@ -71697,23 +64265,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71736,17 +64304,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5242, @@ -71755,23 +64313,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71794,17 +64352,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5243, @@ -71813,22 +64361,22 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71851,17 +64399,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20487, @@ -71870,21 +64408,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71907,17 +64445,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20488, @@ -71926,21 +64454,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x10c5", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -71963,17 +64491,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20489, @@ -71982,21 +64500,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000010c5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xe4", + "0xc4", + "0x0", + "0x10c5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72019,17 +64537,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20490, @@ -72038,21 +64546,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x10c5", + "0xc4", + "0x0", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72075,17 +64583,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20491, @@ -72094,20 +64592,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x10c5", + "0xc4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72130,17 +64628,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20492, @@ -72149,19 +64637,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000010c5", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x10c5", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72184,17 +64672,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20493, @@ -72203,18 +64681,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000010c5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x10c5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72237,17 +64715,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4293, @@ -72256,17 +64724,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72289,17 +64757,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4294, @@ -72308,17 +64766,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72341,17 +64799,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4315, @@ -72360,18 +64808,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72394,17 +64842,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4316, @@ -72413,17 +64851,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72446,17 +64884,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4321, @@ -72465,18 +64893,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72499,17 +64927,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4322, @@ -72518,19 +64936,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72553,17 +64971,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4324, @@ -72572,20 +64980,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72608,17 +65016,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4325, @@ -72627,20 +65025,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72663,17 +65061,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4326, @@ -72682,21 +65070,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x201", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72719,17 +65107,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4331, @@ -72738,22 +65116,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x201", + "0x70a08231", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72776,17 +65154,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4332, @@ -72795,23 +65163,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000070a08231" - ], - "memory": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x201", + "0x70a08231" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000201", @@ -72832,17 +65200,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4334, @@ -72851,22 +65209,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x201", + "0x70a08231", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72889,17 +65247,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4335, @@ -72908,21 +65256,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "70a0823100000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x201", + "0x70a0823100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -72945,17 +65293,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4336, @@ -72964,22 +65302,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "70a0823100000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x201", + "0x70a0823100000000000000000000000000000000000000000000000000000000", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73002,17 +65340,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4337, @@ -73021,20 +65349,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73057,17 +65385,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4339, @@ -73076,21 +65394,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x201", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73113,17 +65431,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4340, @@ -73132,20 +65440,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x205" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73168,17 +65476,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4343, @@ -73187,21 +65485,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205", - "00000000000000000000000000000000000000000000000000000000000010fd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x205", + "0x10fd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73224,17 +65522,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4344, @@ -73243,21 +65531,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000205", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0x205", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73280,17 +65568,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4345, @@ -73299,21 +65577,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x205" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73336,17 +65614,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4348, @@ -73355,22 +65623,22 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205", - "0000000000000000000000000000000000000000000000000000000000005a3c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x205", + "0x5a3c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73393,17 +65661,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 23100, @@ -73412,21 +65670,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x205" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73449,17 +65707,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 23101, @@ -73468,21 +65716,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x205" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73505,17 +65753,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 23122, @@ -73524,22 +65762,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x205", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73562,17 +65800,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 23123, @@ -73581,22 +65809,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000205", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x205", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73619,17 +65847,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 23124, @@ -73638,22 +65856,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x205" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73676,17 +65894,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 23125, @@ -73695,22 +65903,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000205", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0x205", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73733,17 +65941,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 23126, @@ -73752,21 +65950,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000205", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0x205", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73789,17 +65987,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 23127, @@ -73808,22 +65996,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000205", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000205" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0x205", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x205" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73846,17 +66034,7 @@ export const trace: any = JSON.parse(` "0004234167000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 23128, @@ -73865,20 +66043,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000205" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0x205" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73901,17 +66079,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 23130, @@ -73920,21 +66088,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000205", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0x205", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -73957,17 +66125,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 23131, @@ -73976,20 +66134,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000010fd", - "0000000000000000000000000000000000000000000000000000000000000225" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x10fd", + "0x225" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74012,17 +66170,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 23132, @@ -74031,20 +66179,20 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "00000000000000000000000000000000000000000000000000000000000010fd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x10fd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74067,17 +66215,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4349, @@ -74086,19 +66224,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74121,17 +66259,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4350, @@ -74140,19 +66268,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74175,17 +66303,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4352, @@ -74194,20 +66312,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74230,17 +66348,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4354, @@ -74249,21 +66357,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74286,17 +66394,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4355, @@ -74305,21 +66403,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74342,17 +66440,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4356, @@ -74361,22 +66449,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74399,17 +66487,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4357, @@ -74418,23 +66496,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000225" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x201", + "0x225" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74457,17 +66535,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4358, @@ -74476,22 +66544,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74514,17 +66582,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4359, @@ -74533,23 +66591,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74572,17 +66630,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4360, @@ -74591,24 +66639,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24", + "0x201", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74631,17 +66679,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4361, @@ -74650,25 +66688,25 @@ export const trace: any = JSON.parse(` "gasCost": 2600, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24", + "0x201", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74691,17 +66729,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4362, @@ -74710,25 +66738,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e6" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24", + "0x201", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74751,17 +66779,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4363, @@ -74770,25 +66788,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24", + "0x201", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74811,17 +66829,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4364, @@ -74830,26 +66838,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24", + "0x201", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74872,17 +66880,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4365, @@ -74891,26 +66889,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24", + "0x201", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74933,17 +66931,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4368, @@ -74952,27 +66940,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001115" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24", + "0x201", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x1", + "0x1115" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -74995,17 +66983,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4373, @@ -75014,25 +66992,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24", + "0x201", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -75055,17 +67033,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4374, @@ -75074,25 +67042,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24", + "0x201", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -75115,17 +67083,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4375, @@ -75134,24 +67092,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24", + "0x201", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -75174,17 +67132,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4376, @@ -75193,25 +67141,25 @@ export const trace: any = JSON.parse(` "gasCost": 104987, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000000000001a09b" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x20", + "0x201", + "0x24", + "0x201", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1a09b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -75234,17 +67182,7 @@ export const trace: any = JSON.parse(` "ecf0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 0, @@ -75253,18 +67191,7 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2, @@ -75273,20 +67200,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" + "0x80" ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4, @@ -75295,25 +67211,10 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x80", + "0x40" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5, @@ -75327,17 +67228,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 6, @@ -75346,24 +67237,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 7, @@ -75372,25 +67253,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8, @@ -75399,25 +67270,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11, @@ -75426,26 +67287,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" + "0x0", + "0x1", + "0x10" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16, @@ -75454,24 +67305,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17, @@ -75480,24 +67321,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 18, @@ -75511,17 +67342,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20, @@ -75530,24 +67351,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 21, @@ -75556,25 +67367,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22, @@ -75583,24 +67384,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 25, @@ -75609,25 +67400,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a9" + "0x0", + "0xa9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 26, @@ -75641,17 +67422,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 28, @@ -75660,24 +67431,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 29, @@ -75686,24 +67447,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "70a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x70a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 31, @@ -75712,25 +67463,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "70a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x70a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 32, @@ -75739,24 +67480,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 33, @@ -75765,25 +67496,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 38, @@ -75792,26 +67513,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000039509351" + "0x70a08231", + "0x70a08231", + "0x39509351" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 39, @@ -75820,25 +67531,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 42, @@ -75847,26 +67548,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000071" + "0x70a08231", + "0x0", + "0x71" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 43, @@ -75875,24 +67566,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 44, @@ -75901,25 +67582,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 49, @@ -75928,26 +67599,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000039509351" + "0x70a08231", + "0x70a08231", + "0x39509351" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 50, @@ -75956,25 +67617,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 53, @@ -75983,26 +67634,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000145" + "0x70a08231", + "0x0", + "0x145" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 54, @@ -76011,24 +67652,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 55, @@ -76037,25 +67668,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 60, @@ -76064,26 +67685,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 61, @@ -76092,25 +67703,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 64, @@ -76119,26 +67720,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000158" + "0x70a08231", + "0x1", + "0x158" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 344, @@ -76147,24 +67738,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 345, @@ -76173,24 +67754,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 348, @@ -76199,25 +67770,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3" + "0x70a08231", + "0xf3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 351, @@ -76226,26 +67787,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166" + "0x70a08231", + "0xf3", + "0x166" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 352, @@ -76254,27 +67805,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0xf3", + "0x166", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 354, @@ -76283,28 +67824,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 357, @@ -76313,29 +67844,19 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000007fa" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x7fa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2042, @@ -76344,28 +67865,18 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2043, @@ -76374,28 +67885,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2045, @@ -76404,29 +67905,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2047, @@ -76435,30 +67926,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2048, @@ -76467,31 +67948,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2049, @@ -76500,32 +67971,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2050, @@ -76534,31 +67995,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2051, @@ -76567,30 +68018,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2052, @@ -76599,30 +68040,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2055, @@ -76631,31 +68062,21 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000080c" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x1", + "0x80c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2060, @@ -76664,29 +68085,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2061, @@ -76695,29 +68106,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2064, @@ -76726,30 +68127,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2065, @@ -76758,31 +68149,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2068, @@ -76791,32 +68172,22 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000778" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x778" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1912, @@ -76825,31 +68196,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1913, @@ -76858,31 +68219,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1914, @@ -76891,32 +68242,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1915, @@ -76925,32 +68266,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1917, @@ -76959,33 +68290,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1919, @@ -76994,34 +68315,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1921, @@ -77030,35 +68341,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1922, @@ -77067,34 +68368,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1923, @@ -77103,33 +68394,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1924, @@ -77138,34 +68419,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1925, @@ -77174,33 +68445,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1926, @@ -77209,34 +68470,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1927, @@ -77245,33 +68496,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1930, @@ -77280,34 +68521,24 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000078f" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x78f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1935, @@ -77316,32 +68547,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1936, @@ -77350,32 +68571,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1937, @@ -77384,32 +68595,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000815" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x4", + "0x815" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1938, @@ -77418,32 +68619,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x815", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1939, @@ -77452,31 +68643,21 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000815" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x815" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2069, @@ -77485,30 +68666,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2070, @@ -77517,30 +68688,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2071, @@ -77549,30 +68710,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000166" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x24", + "0x4", + "0x0", + "0x166" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2072, @@ -77581,30 +68732,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x166", + "0x4", + "0x0", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2073, @@ -77613,29 +68754,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x166", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2074, @@ -77644,28 +68775,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x166", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2075, @@ -77674,27 +68795,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x166" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 358, @@ -77703,26 +68814,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 359, @@ -77731,26 +68832,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 361, @@ -77759,27 +68850,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 363, @@ -77788,28 +68869,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 365, @@ -77818,29 +68889,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 366, @@ -77849,28 +68910,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 367, @@ -77879,27 +68930,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 368, @@ -77908,26 +68949,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 370, @@ -77936,27 +68967,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 371, @@ -77965,27 +68986,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 372, @@ -77994,28 +69005,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 373, @@ -78024,26 +69025,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 375, @@ -78052,27 +69043,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0xf3", + "0x0", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 376, @@ -78081,28 +69062,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0", + "0x20", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 377, @@ -78111,28 +69082,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0xf3", + "0x0", + "0x0", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 378, @@ -78141,26 +69102,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 380, @@ -78169,56 +69120,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0xf3", + "0x0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 381, - "op": "SHA3", + "op": "KECCAK256", "gas": 104536, "gasCost": 42, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x40", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 382, @@ -78227,9 +69158,9 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" + "0x70a08231", + "0xf3", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78238,7 +69169,8 @@ export const trace: any = JSON.parse(` ], "storage": { "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 4800 }, { "pc": 383, @@ -78247,18 +69179,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 384, @@ -78267,18 +69197,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f3" + "0x70a08231", + "0x0", + "0xf3" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 243, @@ -78287,17 +69215,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 244, @@ -78306,17 +69232,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 246, @@ -78325,18 +69249,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0x0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 247, @@ -78345,18 +69267,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x0", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 248, @@ -78365,18 +69285,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x80", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 249, @@ -78385,21 +69303,17 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x0", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 250, @@ -78408,8 +69322,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78418,9 +69332,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 252, @@ -78429,9 +69341,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x80", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78440,9 +69352,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 253, @@ -78451,8 +69361,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78461,9 +69371,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 256, @@ -78472,9 +69380,9 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c3" + "0x70a08231", + "0xa0", + "0xc3" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78483,9 +69391,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 195, @@ -78494,8 +69400,8 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78504,9 +69410,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 196, @@ -78515,8 +69419,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78525,9 +69429,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 198, @@ -78536,9 +69438,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0xa0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78547,9 +69449,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 199, @@ -78558,9 +69458,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0xa0", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78569,9 +69469,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 200, @@ -78580,10 +69478,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0xa0", + "0x80", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78592,9 +69490,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 201, @@ -78603,10 +69499,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0x80", + "0x80", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78615,9 +69511,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 202, @@ -78626,9 +69520,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x80", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78637,9 +69531,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 203, @@ -78648,9 +69540,9 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x20", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -78659,9 +69551,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4377, @@ -78670,20 +69560,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -78706,9 +69596,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4378, @@ -78717,20 +69605,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -78753,9 +69641,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4379, @@ -78764,26 +69650,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x0", + "0x0" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", + "0000000000000000000000000000000000000000000000000000000000000201", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", @@ -78801,9 +69687,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4380, @@ -78812,21 +69696,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -78849,9 +69733,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4383, @@ -78860,22 +69742,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001129" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x0", + "0x1", + "0x1129" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -78898,9 +69780,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4393, @@ -78909,20 +69789,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -78945,9 +69825,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4394, @@ -78956,20 +69834,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -78992,9 +69870,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4395, @@ -79003,19 +69879,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000225" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x225" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79038,9 +69914,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4396, @@ -79049,18 +69923,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79083,9 +69957,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4397, @@ -79094,17 +69966,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79127,9 +69999,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4398, @@ -79138,16 +70008,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79170,9 +70040,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4400, @@ -79181,17 +70049,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79214,9 +70082,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4401, @@ -79225,17 +70091,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79258,9 +70124,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4402, @@ -79269,18 +70133,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79303,9 +70167,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4404, @@ -79314,19 +70176,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79349,9 +70211,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4405, @@ -79360,19 +70220,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79395,9 +70255,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4407, @@ -79406,20 +70264,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79442,9 +70300,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4408, @@ -79453,21 +70309,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79490,9 +70346,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4409, @@ -79501,20 +70355,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79537,9 +70391,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4410, @@ -79548,19 +70400,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79583,9 +70435,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4411, @@ -79594,20 +70444,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20", + "0x20", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79630,9 +70480,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4412, @@ -79641,19 +70489,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79676,9 +70524,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4413, @@ -79687,20 +70533,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20", + "0x221", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79723,9 +70569,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4415, @@ -79734,21 +70578,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20", + "0x221", + "0x221", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79771,9 +70615,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4416, @@ -79782,19 +70624,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79817,9 +70659,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4417, @@ -79828,18 +70668,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79862,9 +70702,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4418, @@ -79873,19 +70711,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x20", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79908,9 +70746,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4419, @@ -79919,18 +70755,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x201", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79953,9 +70789,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4420, @@ -79964,18 +70798,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -79998,9 +70832,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4423, @@ -80009,19 +70841,63 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x201", + "0x114d" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000114d" + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", + "00f0f998f2000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 4800 + }, + { + "pc": 4424, + "op": "SWAP1", + "gas": 103900, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x201", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80044,55 +70920,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 4424, - "op": "SWAP1", - "gas": 103900, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "00f0f998f2000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4425, @@ -80101,19 +70929,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80136,9 +70964,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4428, @@ -80147,20 +70973,20 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "00000000000000000000000000000000000000000000000000000000000057d3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201", + "0x57d3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80183,9 +71009,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22483, @@ -80194,19 +71018,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80229,9 +71053,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22484, @@ -80240,19 +71062,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80275,9 +71097,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22486, @@ -80286,20 +71106,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80322,9 +71142,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22488, @@ -80333,21 +71151,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80370,9 +71188,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22489, @@ -80381,22 +71197,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201", + "0x0", + "0x20", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80419,9 +71235,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22490, @@ -80430,23 +71244,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201", + "0x0", + "0x20", + "0x201", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80469,9 +71283,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22491, @@ -80480,22 +71292,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201", + "0x0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80518,9 +71330,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22492, @@ -80529,21 +71339,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80566,9 +71376,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22493, @@ -80577,21 +71385,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80614,9 +71422,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22496, @@ -80625,22 +71431,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000057e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201", + "0x0", + "0x1", + "0x57e4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80663,9 +71469,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22500, @@ -80674,20 +71478,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80710,9 +71514,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22501, @@ -80721,20 +71523,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80757,9 +71559,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22502, @@ -80768,19 +71568,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80803,9 +71603,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22503, @@ -80814,19 +71612,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80849,9 +71647,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22504, @@ -80860,19 +71656,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000000000000000000000000000000000000000114d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x0", + "0x221", + "0x114d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80895,9 +71691,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22505, @@ -80906,19 +71700,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x0", + "0x114d", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80941,9 +71735,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22506, @@ -80952,18 +71744,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000114d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x0", + "0x114d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -80986,9 +71778,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4429, @@ -80997,17 +71787,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81030,9 +71820,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4430, @@ -81041,17 +71829,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81074,9 +71862,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4431, @@ -81085,17 +71871,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81118,9 +71904,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4432, @@ -81129,16 +71913,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81161,9 +71945,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4435, @@ -81172,17 +71954,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81205,9 +71987,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4436, @@ -81216,18 +71996,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81250,9 +72030,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4437, @@ -81261,19 +72039,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81296,9 +72074,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4438, @@ -81307,20 +72083,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81343,9 +72119,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4439, @@ -81354,21 +72128,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81391,9 +72165,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4441, @@ -81402,22 +72174,22 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x2", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81440,9 +72212,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4442, @@ -81451,21 +72221,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81488,9 +72258,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4444, @@ -81499,22 +72267,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x40", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81537,9 +72305,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4445, @@ -81548,21 +72314,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81585,9 +72351,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4447, @@ -81596,22 +72360,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x60", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81634,9 +72398,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4448, @@ -81645,22 +72407,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x60", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81683,9 +72445,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4449, @@ -81694,22 +72454,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x221", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81732,9 +72492,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4450, @@ -81743,23 +72501,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x221", + "0x60", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81782,9 +72540,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4451, @@ -81793,22 +72549,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x221", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81831,9 +72587,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4453, @@ -81842,23 +72596,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x221", + "0x281", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81881,9 +72635,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4454, @@ -81892,21 +72644,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81929,9 +72681,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4455, @@ -81940,22 +72690,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0xa4", + "0x2", + "0x2", + "0x221", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -81978,9 +72728,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4456, @@ -81989,22 +72737,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0x2", + "0x2", + "0x221", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82027,9 +72775,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4457, @@ -82038,22 +72784,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x221", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82076,9 +72822,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4458, @@ -82087,22 +72831,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x221", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82125,9 +72869,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4459, @@ -82136,22 +72878,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82174,9 +72916,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4460, @@ -82185,23 +72925,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x221", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82224,9 +72964,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4461, @@ -82235,24 +72973,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x221", + "0x2", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82275,9 +73013,7 @@ export const trace: any = JSON.parse(` "00f0f998f2000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4462, @@ -82286,22 +73022,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82324,9 +73060,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4464, @@ -82335,23 +73069,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x221", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82374,9 +73108,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4465, @@ -82385,22 +73117,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x241" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82423,9 +73155,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4466, @@ -82434,23 +73164,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x241", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82473,9 +73203,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4467, @@ -82484,24 +73212,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x241", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82524,9 +73252,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4469, @@ -82535,25 +73261,25 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x241", + "0xa4", + "0x2", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82576,9 +73302,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4470, @@ -82587,24 +73311,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x241", + "0xa4", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82627,9 +73351,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4471, @@ -82638,25 +73360,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x241", + "0xa4", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82679,9 +73401,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4472, @@ -82690,26 +73410,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x241", + "0xa4", + "0x40", + "0x40", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82732,9 +73452,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4473, @@ -82743,27 +73461,27 @@ export const trace: any = JSON.parse(` "gasCost": 15, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000241" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x241", + "0xa4", + "0x40", + "0x40", + "0xa4", + "0x241" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82784,13 +73502,9 @@ export const trace: any = JSON.parse(` "2000000000000000000000000000000000000000000000000000000000000000", "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4474, @@ -82799,24 +73513,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x241", + "0xa4", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82841,9 +73555,7 @@ export const trace: any = JSON.parse(` "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", "5200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4476, @@ -82852,25 +73564,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000241", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x241", + "0xa4", + "0x40", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82895,9 +73607,7 @@ export const trace: any = JSON.parse(` "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", "5200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4477, @@ -82906,25 +73616,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000241" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x0", + "0xa4", + "0x40", + "0x241" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -82949,9 +73659,7 @@ export const trace: any = JSON.parse(` "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", "5200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4478, @@ -82960,24 +73668,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x0", + "0xa4", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83002,9 +73710,7 @@ export const trace: any = JSON.parse(` "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", "5200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4479, @@ -83013,24 +73719,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000281", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x281", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83055,9 +73761,7 @@ export const trace: any = JSON.parse(` "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", "5200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4480, @@ -83066,24 +73770,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0x281", + "0x0", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83108,9 +73812,7 @@ export const trace: any = JSON.parse(` "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", "5200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4481, @@ -83119,24 +73821,24 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0xa4", + "0x0", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83159,12 +73861,9 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "5200000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4482, @@ -83173,22 +73872,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83214,9 +73913,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4483, @@ -83225,21 +73922,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83265,9 +73962,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4484, @@ -83276,22 +73971,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xa4", + "0x2", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83317,9 +74012,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4485, @@ -83328,22 +74021,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x2", + "0x2", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83369,9 +74062,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4486, @@ -83380,21 +74071,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x2", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83420,9 +74111,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4489, @@ -83431,22 +74120,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000002f6b" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x2", + "0x2", + "0x2f6b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83472,9 +74161,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4490, @@ -83483,22 +74170,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000002f6b", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x2f6b", + "0x2", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83524,9 +74211,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4491, @@ -83535,21 +74220,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000002f6b", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x2f6b", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83575,9 +74260,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4492, @@ -83586,20 +74269,20 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000002f6b" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x2f6b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83625,9 +74308,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12139, @@ -83636,19 +74317,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83674,9 +74355,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12140, @@ -83685,19 +74364,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83723,9 +74402,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12142, @@ -83734,20 +74411,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83773,9 +74450,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12143, @@ -83784,20 +74459,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83823,9 +74498,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12145, @@ -83834,21 +74507,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83874,9 +74547,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12146, @@ -83885,22 +74556,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x1", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83926,9 +74597,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12147, @@ -83937,22 +74606,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x1", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -83978,9 +74647,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12148, @@ -83989,21 +74656,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84029,9 +74696,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12149, @@ -84040,22 +74705,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84081,9 +74746,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12150, @@ -84092,21 +74755,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84132,9 +74795,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12151, @@ -84143,21 +74804,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84183,9 +74844,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12154, @@ -84194,22 +74853,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000146a" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x146a" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84235,9 +74894,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12155, @@ -84246,20 +74903,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84285,9 +74942,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12157, @@ -84296,21 +74951,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84336,9 +74991,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12158, @@ -84347,22 +75000,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84388,9 +75041,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12159, @@ -84399,23 +75050,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84441,9 +75092,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12160, @@ -84452,24 +75101,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84495,9 +75144,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12161, @@ -84506,25 +75153,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x0", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84550,9 +75197,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12162, @@ -84561,25 +75206,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x0", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84605,9 +75250,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12163, @@ -84616,26 +75259,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x0", + "0x2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84661,9 +75304,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12164, @@ -84672,25 +75313,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84716,9 +75357,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12167, @@ -84727,26 +75366,26 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f89" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x0", + "0x1", + "0x2f89" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84772,9 +75411,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12169, @@ -84783,24 +75420,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84826,9 +75463,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12170, @@ -84837,24 +75472,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84880,9 +75515,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12172, @@ -84891,25 +75524,25 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84935,9 +75568,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12173, @@ -84946,24 +75577,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -84989,9 +75620,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12175, @@ -85000,25 +75629,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85044,9 +75673,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12176, @@ -85055,24 +75682,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x221", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85098,9 +75725,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12177, @@ -85109,23 +75734,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000241" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x241" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85151,9 +75776,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12178, @@ -85162,23 +75785,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85204,9 +75827,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12179, @@ -85215,24 +75836,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85258,9 +75879,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12180, @@ -85269,25 +75888,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85313,9 +75932,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12182, @@ -85324,26 +75941,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85369,9 +75986,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12183, @@ -85380,25 +75995,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85424,9 +76039,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12184, @@ -85435,26 +76048,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x1", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85480,9 +76093,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12185, @@ -85491,26 +76102,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x1", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85536,9 +76147,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12186, @@ -85547,27 +76156,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x1", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85593,9 +76202,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12187, @@ -85604,26 +76211,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85649,9 +76256,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12190, @@ -85660,27 +76265,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002fa0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x1", + "0x1", + "0x2fa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85706,9 +76311,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12192, @@ -85717,25 +76320,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85761,9 +76364,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12193, @@ -85772,25 +76373,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85816,9 +76417,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12195, @@ -85827,26 +76426,26 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85872,9 +76471,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12196, @@ -85883,25 +76480,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85927,9 +76524,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12198, @@ -85938,26 +76533,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -85983,9 +76578,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12199, @@ -85994,25 +76587,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x221", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86038,9 +76631,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12200, @@ -86049,24 +76640,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000261" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x261" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86092,9 +76683,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12201, @@ -86103,24 +76692,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86146,9 +76735,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12202, @@ -86157,25 +76744,76 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0000000000000000000000000000000000000000000000000000000000000281", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], + "refund": 4800 + }, + { + "pc": 12203, + "op": "SWAP2", + "gas": 103493, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -86200,62 +76838,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12203, - "op": "SWAP2", - "gas": 103493, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12204, @@ -86264,23 +76847,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86306,9 +76889,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12205, @@ -86317,22 +76898,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86358,9 +76939,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12207, @@ -86369,23 +76948,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86411,9 +76990,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12210, @@ -86422,24 +76999,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86465,9 +77042,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12211, @@ -86476,25 +77051,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86520,9 +77095,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12212, @@ -86531,26 +77104,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86576,9 +77149,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12215, @@ -86587,27 +77158,27 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000003f02" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x3f02" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86633,9 +77204,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16130, @@ -86644,26 +77213,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86689,9 +77258,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16131, @@ -86700,26 +77267,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86745,9 +77312,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16133, @@ -86756,27 +77321,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86802,9 +77367,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16134, @@ -86813,28 +77376,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86860,9 +77423,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16135, @@ -86871,29 +77432,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86919,9 +77480,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16156, @@ -86930,30 +77489,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -86979,9 +77538,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16157, @@ -86990,29 +77547,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87038,9 +77595,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16158, @@ -87049,30 +77604,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87098,9 +77653,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16179, @@ -87109,31 +77662,89 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", + "0000000000000000000000000000000000000000000000000000000000000281", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 4800 + }, + { + "pc": 16180, + "op": "EQ", + "gas": 103440, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87159,69 +77770,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16180, - "op": "EQ", - "gas": 103440, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16181, @@ -87230,29 +77779,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87278,9 +77827,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16182, @@ -87289,29 +77836,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87337,9 +77884,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16185, @@ -87348,30 +77893,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003f3e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1", + "0x3f3e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87397,9 +77942,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16190, @@ -87408,28 +77951,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87455,9 +77998,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16191, @@ -87466,28 +78007,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87513,9 +78054,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16192, @@ -87524,29 +78063,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87572,9 +78111,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16213, @@ -87583,30 +78120,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87632,9 +78169,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16214, @@ -87643,29 +78178,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87691,9 +78226,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16215, @@ -87702,30 +78235,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87751,9 +78284,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16236, @@ -87762,31 +78293,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87812,9 +78343,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16237, @@ -87823,30 +78352,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87872,9 +78401,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16238, @@ -87883,29 +78410,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87931,9 +78458,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16241, @@ -87942,30 +78467,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003f78" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1", + "0x3f78" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -87991,9 +78516,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16248, @@ -88002,28 +78525,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88049,9 +78572,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16249, @@ -88060,28 +78581,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88107,9 +78628,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16250, @@ -88118,29 +78637,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88166,9 +78685,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16251, @@ -88177,30 +78694,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88226,9 +78743,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16252, @@ -88237,30 +78752,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88286,9 +78801,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16253, @@ -88297,30 +78810,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88346,9 +78859,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16254, @@ -88357,30 +78868,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88406,9 +78917,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16255, @@ -88417,29 +78926,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88465,9 +78974,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16256, @@ -88476,29 +78983,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88524,9 +79031,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16257, @@ -88535,28 +79040,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88582,9 +79087,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16278, @@ -88593,29 +79096,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88641,9 +79144,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16279, @@ -88652,30 +79153,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88701,9 +79202,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16280, @@ -88712,29 +79211,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88760,9 +79259,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16283, @@ -88771,30 +79268,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000003fa0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x3fa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88820,9 +79317,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16288, @@ -88831,28 +79326,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88878,9 +79373,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16289, @@ -88889,28 +79382,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88936,9 +79429,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16290, @@ -88947,28 +79438,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -88994,9 +79485,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16291, @@ -89005,27 +79494,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x2fb8", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89051,9 +79540,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16292, @@ -89062,27 +79549,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002fb8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x2fb8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89108,9 +79595,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16293, @@ -89119,27 +79604,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002fb8", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x2fb8", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89165,9 +79650,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16294, @@ -89176,26 +79659,26 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002fb8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x2fb8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89221,9 +79704,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12216, @@ -89232,25 +79713,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89276,9 +79757,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12217, @@ -89287,25 +79766,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89331,9 +79810,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12218, @@ -89342,24 +79819,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89385,9 +79862,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12219, @@ -89396,24 +79871,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89439,9 +79914,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12220, @@ -89450,23 +79923,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89492,9 +79965,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12222, @@ -89503,24 +79974,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89546,9 +80017,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12225, @@ -89557,25 +80026,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89601,9 +80070,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12258, @@ -89612,26 +80079,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89657,9 +80124,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12259, @@ -89668,27 +80133,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89714,9 +80179,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12260, @@ -89725,28 +80188,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89772,9 +80235,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12263, @@ -89783,29 +80244,29 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002ca2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x2ca2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89831,9 +80292,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11426, @@ -89842,28 +80301,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89889,9 +80348,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11427, @@ -89900,28 +80357,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -89947,9 +80404,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11429, @@ -89958,29 +80413,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90006,9 +80461,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11430, @@ -90017,30 +80470,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90066,9 +80519,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11432, @@ -90077,31 +80528,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90127,9 +80578,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11435, @@ -90138,32 +80587,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90189,9 +80638,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11436, @@ -90200,33 +80647,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90252,9 +80699,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11437, @@ -90263,34 +80708,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90316,9 +80761,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11440, @@ -90327,35 +80770,35 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000003f02" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x3f02" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90381,9 +80824,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16130, @@ -90392,34 +80833,34 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90445,9 +80886,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16131, @@ -90456,34 +80895,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90509,9 +80948,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16133, @@ -90520,35 +80957,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90574,9 +81011,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16134, @@ -90585,36 +81020,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90640,9 +81075,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16135, @@ -90651,37 +81084,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90707,9 +81140,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16156, @@ -90718,38 +81149,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90775,9 +81206,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16157, @@ -90786,37 +81215,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90842,9 +81271,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16158, @@ -90853,38 +81280,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90910,9 +81337,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16179, @@ -90921,39 +81346,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -90979,9 +81404,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16180, @@ -90990,38 +81413,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91047,9 +81470,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16181, @@ -91058,37 +81479,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91114,9 +81535,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16182, @@ -91125,37 +81544,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91181,9 +81600,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16185, @@ -91192,38 +81609,38 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003f3e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1", + "0x3f3e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91249,9 +81666,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16190, @@ -91260,36 +81675,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91315,9 +81730,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16191, @@ -91326,36 +81739,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91381,9 +81794,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16192, @@ -91392,37 +81803,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91448,9 +81859,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16213, @@ -91459,38 +81868,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91516,9 +81925,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16214, @@ -91527,37 +81934,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91583,9 +81990,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16215, @@ -91594,38 +81999,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91651,9 +82056,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16236, @@ -91662,39 +82065,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91720,9 +82123,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16237, @@ -91731,38 +82132,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91788,9 +82189,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16238, @@ -91799,37 +82198,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91855,9 +82254,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16241, @@ -91866,38 +82263,38 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003f78" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x1", + "0x3f78" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91923,9 +82320,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16248, @@ -91934,36 +82329,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -91989,9 +82384,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16249, @@ -92000,36 +82393,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92055,9 +82448,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16250, @@ -92066,37 +82457,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92122,9 +82513,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16251, @@ -92133,38 +82522,38 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92190,9 +82579,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16252, @@ -92201,38 +82588,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92258,9 +82645,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16253, @@ -92269,38 +82654,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92326,9 +82711,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16254, @@ -92337,38 +82720,38 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92394,9 +82777,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16255, @@ -92405,37 +82786,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92461,9 +82842,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16256, @@ -92472,37 +82851,37 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92528,9 +82907,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16257, @@ -92539,36 +82916,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92594,9 +82971,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16278, @@ -92605,37 +82980,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92661,9 +83036,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16279, @@ -92672,38 +83045,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92729,9 +83102,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16280, @@ -92740,37 +83111,103 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000281", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 4800 + }, + { + "pc": 16283, + "op": "JUMPI", + "gas": 103145, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x3fa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92796,77 +83233,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 16283, - "op": "JUMPI", - "gas": 103145, - "gasCost": 10, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000003fa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16288, @@ -92875,36 +83242,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92930,9 +83297,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16289, @@ -92941,36 +83306,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -92996,9 +83361,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16290, @@ -93007,36 +83370,36 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93062,9 +83425,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16291, @@ -93073,35 +83434,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2cb1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93127,9 +83488,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16292, @@ -93138,35 +83497,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002cb1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x2cb1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93192,9 +83551,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16293, @@ -93203,35 +83560,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002cb1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x2cb1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93257,9 +83614,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16294, @@ -93268,34 +83623,34 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000002cb1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x2cb1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93321,9 +83676,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11441, @@ -93332,33 +83685,33 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93384,9 +83737,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11442, @@ -93395,33 +83746,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93447,9 +83798,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11444, @@ -93458,34 +83807,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93511,9 +83860,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11445, @@ -93522,35 +83869,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93576,9 +83923,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11446, @@ -93587,35 +83932,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93641,9 +83986,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11479, @@ -93652,36 +83995,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93707,9 +84050,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11481, @@ -93718,37 +84059,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93774,9 +84115,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11482, @@ -93785,37 +84124,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93841,9 +84180,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11483, @@ -93852,38 +84189,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93909,9 +84246,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11484, @@ -93920,37 +84255,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -93976,9 +84311,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11485, @@ -93987,38 +84320,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94044,9 +84377,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11486, @@ -94055,37 +84386,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94111,9 +84442,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11488, @@ -94122,38 +84451,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94179,9 +84508,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11489, @@ -94190,39 +84517,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94248,9 +84575,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11490, @@ -94259,40 +84584,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0x20", + "0x20", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94318,9 +84643,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11491, @@ -94329,39 +84652,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002a1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0x20", + "0x2a1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94387,9 +84710,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11492, @@ -94398,39 +84719,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002a1", - "0000000000000000000000000000000000000000000000000000000000000020", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x2a1", + "0x20", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94456,9 +84777,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11493, @@ -94467,39 +84786,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002a1", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x2a1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94525,9 +84844,7 @@ export const trace: any = JSON.parse(` "5200000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11494, @@ -94536,39 +84853,39 @@ export const trace: any = JSON.parse(` "gasCost": 7, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002a1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000", + "0x2a1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94592,12 +84909,9 @@ export const trace: any = JSON.parse(` "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", "5200000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11495, @@ -94606,37 +84920,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94663,9 +84977,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11496, @@ -94674,37 +84986,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94731,9 +85043,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11497, @@ -94742,38 +85052,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94800,9 +85110,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11498, @@ -94811,37 +85119,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94868,9 +85176,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11499, @@ -94879,38 +85185,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -94937,9 +85243,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11500, @@ -94948,37 +85252,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95005,9 +85309,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11502, @@ -95016,38 +85318,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", + "0x34" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95074,9 +85376,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11503, @@ -95085,39 +85385,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", + "0x34", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95144,9 +85444,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11504, @@ -95155,38 +85453,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf3b9569f82b18aef890de263b84189bd33ebe452000000000000000000000000", + "0x2b5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95213,9 +85511,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11505, @@ -95224,36 +85520,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95280,9 +85576,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11506, @@ -95291,37 +85585,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95348,9 +85642,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11507, @@ -95359,37 +85651,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95416,9 +85708,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11509, @@ -95427,38 +85717,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281", + "0x28" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95485,9 +85775,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11510, @@ -95496,39 +85784,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281", + "0x28", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95555,9 +85843,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11511, @@ -95566,40 +85852,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281", + "0x28", + "0x281", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95626,9 +85912,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11512, @@ -95637,39 +85921,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281", + "0x28", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95696,9 +85980,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11513, @@ -95707,38 +85989,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281", + "0x28" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95765,9 +86047,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11514, @@ -95776,39 +86056,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281", + "0x28", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95835,9 +86115,7 @@ export const trace: any = JSON.parse(` "00a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11515, @@ -95846,37 +86124,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95903,9 +86181,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11517, @@ -95914,38 +86190,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000048" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281", + "0x48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -95972,9 +86248,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11518, @@ -95983,39 +86257,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000048", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281", + "0x48", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96042,9 +86316,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11519, @@ -96053,38 +86325,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "00000000000000000000000000000000000000000000000000000000000002c9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281", + "0x2c9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96111,9 +86383,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11520, @@ -96122,39 +86392,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281", + "0x2c9", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96181,9 +86451,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11521, @@ -96192,37 +86460,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96249,9 +86517,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11522, @@ -96260,38 +86526,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96318,9 +86584,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11523, @@ -96329,38 +86593,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000028" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x281", + "0x28" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96387,9 +86651,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11524, @@ -96398,38 +86660,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x28", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96456,9 +86718,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11525, @@ -96467,39 +86727,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x28", + "0x281", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96526,49 +86786,47 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11526, - "op": "SHA3", + "op": "KECCAK256", "gas": 102970, "gasCost": 42, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "00000000000000000000000000000000000000000000000000000000000002a1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x28", + "0x2a1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96595,9 +86853,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11527, @@ -96606,37 +86862,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96663,9 +86919,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11560, @@ -96674,38 +86928,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xff00000000000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96732,9 +86986,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11562, @@ -96743,39 +86995,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000068" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xff00000000000000000000000000000000000000000000000000000000000000", + "0x68" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96802,9 +87054,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11563, @@ -96813,45 +87063,45 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xff00000000000000000000000000000000000000000000000000000000000000", + "0x68", + "0x281" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000068", - "0000000000000000000000000000000000000000000000000000000000000281" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", + "00000000000000000000000000000000000000000000000000000000000002c9", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", @@ -96873,9 +87123,7 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11564, @@ -96884,39 +87132,39 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "ff00000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002e9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xff00000000000000000000000000000000000000000000000000000000000000", + "0x2e9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -96941,13 +87189,9 @@ export const trace: any = JSON.parse(` "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", "5200000000000000000000000000000000000000000000000000000000000000", "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "63b84189bd33ebe4520000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11565, @@ -96956,37 +87200,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97015,9 +87259,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff00000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11566, @@ -97026,37 +87268,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97085,9 +87327,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff00000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11567, @@ -97096,37 +87336,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x281", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97155,9 +87395,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff00000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11568, @@ -97166,37 +87404,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + "0x40", + "0x281", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97225,9 +87463,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff00000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11569, @@ -97236,36 +87472,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000281", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + "0x40", + "0x281", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97294,9 +87530,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff00000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11570, @@ -97305,36 +87539,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97363,9 +87597,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff00000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11571, @@ -97374,36 +87606,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97432,9 +87664,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff00000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11572, @@ -97443,35 +87673,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97500,9 +87730,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff00000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11574, @@ -97511,36 +87739,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000069" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x69" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97569,9 +87797,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff00000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11575, @@ -97580,37 +87806,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000069", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x69", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97639,9 +87865,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff00000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11576, @@ -97650,36 +87874,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002ea" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x2ea" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97708,9 +87932,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff00000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11577, @@ -97719,34 +87941,100 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x40" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c9", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 4800 + }, + { + "pc": 11579, + "op": "DUP4", + "gas": 102871, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x40", + "0x7d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97775,77 +88063,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11579, - "op": "DUP4", - "gas": 102871, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000007d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11580, @@ -97854,36 +88072,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000007d", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x40", + "0x7d", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97912,9 +88130,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11581, @@ -97923,35 +88139,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000002fe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x40", + "0x2fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -97980,9 +88196,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11582, @@ -97991,35 +88205,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "00000000000000000000000000000000000000000000000000000000000002fe", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x2fe", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x40", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98048,9 +88262,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11583, @@ -98059,35 +88271,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "00000000000000000000000000000000000000000000000000000000000002fe", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x2fe", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98116,9 +88328,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11584, @@ -98127,35 +88337,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "f8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", - "00000000000000000000000000000000000000000000000000000000000002fe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0xf8010de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b8773", + "0x2fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98184,9 +88394,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11585, @@ -98195,33 +88403,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98250,9 +88458,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11618, @@ -98261,34 +88467,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98317,9 +88523,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11620, @@ -98328,35 +88532,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98385,9 +88589,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11621, @@ -98396,36 +88598,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000009d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d", + "0x9d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98454,9 +88656,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11622, @@ -98465,37 +88665,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d", + "0x9d", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98524,9 +88724,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11623, @@ -98535,36 +88733,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000031e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d", + "0x31e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98593,9 +88791,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11624, @@ -98604,36 +88800,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000031e", - "000000000000000000000000000000000000000000000000000000000000009d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x31e", + "0x9d", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98662,9 +88858,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11625, @@ -98673,36 +88867,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000031e", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x31e", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98731,9 +88925,7 @@ export const trace: any = JSON.parse(` "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11626, @@ -98742,36 +88934,36 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000031e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x9d", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x31e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98798,12 +88990,9 @@ export const trace: any = JSON.parse(` "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", "63b84189bd33ebe4520000000000000000000000000000000000000000000000", "000000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b87730000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11627, @@ -98812,34 +89001,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x9d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98869,9 +89058,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11628, @@ -98880,35 +89067,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x9d", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -98938,9 +89125,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11629, @@ -98949,35 +89134,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000002c9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x9d", + "0x2c9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99007,9 +89192,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11630, @@ -99018,36 +89201,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000002c9", - "00000000000000000000000000000000000000000000000000000000000002c9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x9d", + "0x2c9", + "0x2c9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99077,9 +89260,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11631, @@ -99088,37 +89269,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000002c9", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x9d", + "0x2c9", + "0x2c9", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99148,9 +89329,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11632, @@ -99159,36 +89338,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000002c9", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x9d", + "0x2c9", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99218,9 +89397,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11633, @@ -99229,36 +89406,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - "00000000000000000000000000000000000000000000000000000000000002c9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x9d", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", + "0x2c9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99288,9 +89465,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11634, @@ -99299,36 +89474,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002c9", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - "000000000000000000000000000000000000000000000000000000000000009d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x2c9", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", + "0x9d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99358,9 +89533,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11635, @@ -99369,35 +89542,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000055" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x2c9", + "0x55" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99427,9 +89600,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11636, @@ -99438,36 +89609,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000055", - "00000000000000000000000000000000000000000000000000000000000002c9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x2c9", + "0x55", + "0x2c9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99497,9 +89668,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11637, @@ -99508,34 +89677,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002c9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x2c9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99565,9 +89734,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11639, @@ -99576,35 +89743,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002c9", - "00000000000000000000000000000000000000000000000000000000000000bd" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0x2c9", + "0xbd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99634,9 +89801,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11640, @@ -99645,35 +89810,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000bd", - "00000000000000000000000000000000000000000000000000000000000002c9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x281", + "0x20", + "0xbd", + "0x2c9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99703,9 +89868,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11641, @@ -99714,35 +89877,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000bd", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2c9", + "0x20", + "0xbd", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99772,9 +89935,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11642, @@ -99783,34 +89944,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2c9", + "0x20", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99840,9 +90001,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11643, @@ -99851,34 +90010,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x40", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2c9", + "0x33e", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99908,9 +90067,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11644, @@ -99919,34 +90076,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x20", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2c9", + "0x33e", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -99976,9 +90133,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11645, @@ -99987,32 +90142,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x20", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2c9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100042,9 +90197,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11646, @@ -100053,33 +90206,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "00000000000000000000000000000000000000000000000000000000000002c9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x20", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2c9", + "0x2c9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100109,9 +90262,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11647, @@ -100120,33 +90271,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000055" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x20", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2c9", + "0x55" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100176,9 +90327,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11648, @@ -100187,33 +90336,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000055", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002c9", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2c9", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100243,9 +90392,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11649, @@ -100254,32 +90401,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000055", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002e9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x55", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x2e9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100309,9 +90456,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11650, @@ -100320,32 +90465,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "00000000000000000000000000000000000000000000000000000000000002e9", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x2e9", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0", + "0x55" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100375,9 +90520,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11651, @@ -100386,32 +90529,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "00000000000000000000000000000000000000000000000000000000000002e9", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x2e9", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x55", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100441,43 +90584,41 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11652, - "op": "SHA3", + "op": "KECCAK256", "gas": 102751, "gasCost": 48, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - "00000000000000000000000000000000000000000000000000000000000002e9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x55", + "0x2e9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100507,9 +90648,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11653, @@ -100518,31 +90657,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x2fe8", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100572,9 +90711,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11654, @@ -100583,31 +90720,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002fe8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x2fe8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100637,9 +90774,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11655, @@ -100648,31 +90783,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x2fe8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100702,9 +90837,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11656, @@ -100713,30 +90846,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x2fe8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100766,9 +90899,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11657, @@ -100777,29 +90908,89 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x2fe8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "000000000000000000000000000000000000000000000000000000000000033e", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" + ], + "refund": 4800 + }, + { + "pc": 11658, + "op": "POP", + "gas": 102691, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x2fe8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100829,71 +91020,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 11658, - "op": "POP", - "gas": 102691, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11659, @@ -100902,27 +91029,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002fe8", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x2fe8", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -100952,9 +91079,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11660, @@ -100963,26 +91088,26 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002fe8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x2fe8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101012,9 +91137,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12264, @@ -101023,25 +91146,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101071,9 +91194,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12265, @@ -101082,25 +91203,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101130,9 +91251,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12266, @@ -101141,25 +91260,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101189,9 +91308,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12267, @@ -101200,24 +91317,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101247,9 +91364,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12269, @@ -101258,25 +91373,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101306,9 +91421,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12270, @@ -101317,26 +91430,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101366,9 +91479,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12272, @@ -101377,27 +91488,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101427,9 +91538,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12273, @@ -101438,28 +91547,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101489,9 +91598,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12274, @@ -101500,29 +91607,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101552,9 +91659,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12295, @@ -101563,30 +91668,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101616,9 +91721,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12296, @@ -101627,29 +91730,154 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000033e", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" + ], + "refund": 4800 + }, + { + "pc": 12301, + "op": "PUSH1", + "gas": 102649, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000033e", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" + ], + "refund": 4800 + }, + { + "pc": 12303, + "op": "MLOAD", + "gas": 102646, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101679,138 +91907,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12301, - "op": "PUSH1", - "gas": 102649, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } - }, - { - "pc": 12303, - "op": "MLOAD", - "gas": 102646, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" - ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12304, @@ -101819,31 +91916,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101873,9 +91970,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12305, @@ -101884,32 +91979,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x33e", + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -101939,9 +92034,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12310, @@ -101950,33 +92043,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x33e", + "0x902f1ac", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102006,9 +92099,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12311, @@ -102017,32 +92108,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x33e", + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102072,9 +92163,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12313, @@ -102083,33 +92172,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x33e", + "0x902f1ac", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102139,9 +92228,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12314, @@ -102150,32 +92237,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "0902f1ac00000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x33e", + "0x902f1ac00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102205,9 +92292,7 @@ export const trace: any = JSON.parse(` "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12315, @@ -102216,33 +92301,33 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "0902f1ac00000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x33e", + "0x902f1ac00000000000000000000000000000000000000000000000000000000", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102270,12 +92355,9 @@ export const trace: any = JSON.parse(` "63b84189bd33ebe4520000000000000000000000000000000000000000000000", "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "0000000000000000000000000000000000000000000000000000000000000000" + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12316, @@ -102284,31 +92366,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102339,9 +92421,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12318, @@ -102350,32 +92430,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x33e", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102406,9 +92486,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12319, @@ -102417,31 +92495,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102472,9 +92550,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12321, @@ -102483,32 +92559,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102539,9 +92615,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12323, @@ -102550,33 +92624,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102607,9 +92681,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12324, @@ -102618,33 +92690,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102675,9 +92747,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12325, @@ -102686,34 +92756,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102744,9 +92814,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12326, @@ -102755,35 +92823,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000342" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x33e", + "0x342" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102814,9 +92882,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12327, @@ -102825,34 +92891,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102883,9 +92949,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12328, @@ -102894,35 +92958,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -102953,9 +93017,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12329, @@ -102964,36 +93026,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4", + "0x33e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -103024,9 +93086,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12330, @@ -103035,37 +93095,37 @@ export const trace: any = JSON.parse(` "gasCost": 2600, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4", + "0x33e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -103096,9 +93156,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12331, @@ -103107,37 +93165,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002c1d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4", + "0x33e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x2c1d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -103168,9 +93226,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12332, @@ -103179,37 +93235,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4", + "0x33e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -103240,9 +93296,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12333, @@ -103251,38 +93305,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4", + "0x33e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -103313,9 +93367,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12334, @@ -103324,38 +93376,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4", + "0x33e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -103386,9 +93438,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12337, @@ -103397,39 +93447,39 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003036" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4", + "0x33e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x1", + "0x3036" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -103460,9 +93510,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12342, @@ -103471,37 +93519,37 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4", + "0x33e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -103532,9 +93580,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12343, @@ -103543,37 +93589,37 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4", + "0x33e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -103604,9 +93650,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12344, @@ -103615,36 +93659,36 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4", + "0x33e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -103675,9 +93719,7 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12345, @@ -103686,37 +93728,37 @@ export const trace: any = JSON.parse(` "gasCost": 98399, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000018677" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x60", + "0x33e", + "0x4", + "0x33e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x18677" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -103745,13 +93787,9 @@ export const trace: any = JSON.parse(` "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902", - "f1ac000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "f1ac000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 0, @@ -103760,10 +93798,7 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [], - "memory": [], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2, @@ -103772,12 +93807,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" + "0x80" ], - "memory": [], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4, @@ -103786,17 +93818,10 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x80", + "0x40" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5, @@ -103810,9 +93835,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 6, @@ -103821,16 +93844,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 7, @@ -103839,17 +93860,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8, @@ -103858,17 +93877,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11, @@ -103877,18 +93894,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" + "0x0", + "0x1", + "0x10" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16, @@ -103897,16 +93912,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17, @@ -103915,16 +93928,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 18, @@ -103938,9 +93949,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20, @@ -103949,16 +93958,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 21, @@ -103967,17 +93974,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22, @@ -103986,16 +93991,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 25, @@ -104004,17 +94007,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001b9" + "0x0", + "0x1b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 26, @@ -104028,9 +94029,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 28, @@ -104039,16 +94038,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 29, @@ -104057,16 +94054,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0902f1ac00000000000000000000000000000000000000000000000000000000" + "0x902f1ac00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 31, @@ -104075,17 +94070,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0902f1ac00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x902f1ac00000000000000000000000000000000000000000000000000000000", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 32, @@ -104094,16 +94087,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 33, @@ -104112,17 +94103,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac", + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 38, @@ -104131,18 +94120,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000006a627842" + "0x902f1ac", + "0x902f1ac", + "0x6a627842" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 39, @@ -104151,17 +94138,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x902f1ac", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 42, @@ -104170,18 +94155,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000f9" + "0x902f1ac", + "0x1", + "0xf9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 249, @@ -104190,16 +94173,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 250, @@ -104208,16 +94189,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 251, @@ -104226,17 +94205,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac", + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 256, @@ -104245,18 +94222,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x902f1ac", + "0x902f1ac", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 257, @@ -104265,17 +94240,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x902f1ac", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 260, @@ -104284,18 +94257,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000166" + "0x902f1ac", + "0x1", + "0x166" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 358, @@ -104304,16 +94275,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 359, @@ -104322,16 +94291,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 360, @@ -104340,17 +94307,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac", + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 365, @@ -104359,18 +94324,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000095ea7b3" + "0x902f1ac", + "0x902f1ac", + "0x95ea7b3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 366, @@ -104379,17 +94342,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x902f1ac", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 369, @@ -104398,18 +94359,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000197" + "0x902f1ac", + "0x1", + "0x197" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 407, @@ -104418,16 +94377,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 408, @@ -104436,16 +94393,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 409, @@ -104454,17 +94409,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac", + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 414, @@ -104473,18 +94426,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x902f1ac", + "0x902f1ac", + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 415, @@ -104493,17 +94444,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x902f1ac", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 418, @@ -104512,18 +94461,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001be" + "0x902f1ac", + "0x0", + "0x1be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 419, @@ -104532,16 +94479,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 420, @@ -104550,17 +94495,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac", + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 425, @@ -104569,18 +94512,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000006fdde03" + "0x902f1ac", + "0x902f1ac", + "0x6fdde03" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 426, @@ -104589,17 +94530,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x902f1ac", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 429, @@ -104608,18 +94547,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000259" + "0x902f1ac", + "0x0", + "0x259" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 430, @@ -104628,16 +94565,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 431, @@ -104646,17 +94581,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac", + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 436, @@ -104665,18 +94598,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac", + "0x902f1ac", + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 437, @@ -104685,17 +94616,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x902f1ac", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 440, @@ -104704,18 +94633,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000002d6" + "0x902f1ac", + "0x1", + "0x2d6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 726, @@ -104724,16 +94651,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 727, @@ -104742,16 +94667,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 730, @@ -104760,17 +94683,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de" + "0x902f1ac", + "0x2de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 733, @@ -104779,18 +94700,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000000000d90" + "0x902f1ac", + "0x2de", + "0xd90" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3472, @@ -104799,17 +94718,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de" + "0x902f1ac", + "0x2de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3473, @@ -104818,17 +94735,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de" + "0x902f1ac", + "0x2de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3475, @@ -104837,9 +94752,9 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000000000008" + "0x902f1ac", + "0x2de", + "0x8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -104848,7 +94763,8 @@ export const trace: any = JSON.parse(` ], "storage": { "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + }, + "refund": 4800 }, { "pc": 3476, @@ -104857,18 +94773,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x902f1ac", + "0x2de", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3491, @@ -104877,19 +94791,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x902f1ac", + "0x2de", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3492, @@ -104898,20 +94810,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x902f1ac", + "0x2de", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3493, @@ -104920,21 +94830,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x902f1ac", + "0x2de", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffff", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3494, @@ -104943,20 +94851,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x902f1ac", + "0x2de", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3495, @@ -104965,20 +94871,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de" + "0x902f1ac", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x2de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3511, @@ -104987,21 +94891,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000010000000000000000000000000000" + "0x902f1ac", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x2de", + "0x10000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3512, @@ -105010,22 +94912,20 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x902f1ac", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x2de", + "0x10000000000000000000000000000", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3513, @@ -105034,21 +94934,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - "000000000000000000000000000062dd06b903d12f2d086f66d08e020a261097" + "0x902f1ac", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x2de", + "0x62dd06b903d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3514, @@ -105057,21 +94955,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000062dd06b903d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de" + "0x902f1ac", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x62dd06b903d12f2d086f66d08e020a261097", + "0x2de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3515, @@ -105080,21 +94976,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000002de", - "000000000000000000000000000062dd06b903d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x902f1ac", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0x2de", + "0x62dd06b903d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3516, @@ -105103,20 +94997,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000002de", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x902f1ac", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0x2de", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3517, @@ -105125,20 +95017,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x2de", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3547, @@ -105147,21 +95037,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000100000000000000000000000000000000000000000000000000000000" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x2de", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0x100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3548, @@ -105170,21 +95058,19 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000100000000000000000000000000000000000000000000000000000000", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x2de", + "0x100000000000000000000000000000000000000000000000000000000", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3549, @@ -105193,20 +95079,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x2de", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3554, @@ -105215,21 +95099,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x2de", + "0x62dd06b9", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3555, @@ -105238,20 +95120,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x2de", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 3556, @@ -105260,20 +95140,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000000002de" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x2de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 734, @@ -105282,19 +95160,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 735, @@ -105303,19 +95179,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 737, @@ -105324,20 +95198,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 738, @@ -105346,21 +95218,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 739, @@ -105369,21 +95239,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x40", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 754, @@ -105392,22 +95260,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x902f1ac", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 755, @@ -105416,22 +95282,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x40", + "0x80", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 756, @@ -105440,23 +95304,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x40", + "0x80", + "0x4c860714d6e", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 757, @@ -105465,22 +95327,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x40", + "0x80", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 758, @@ -105489,25 +95349,21 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x40", + "0x80", + "0x4c860714d6e", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 759, @@ -105516,12 +95372,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x40", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105530,9 +95386,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c860714d6e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 760, @@ -105541,12 +95395,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x80", + "0x62dd06b9", + "0x40", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105555,9 +95409,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c860714d6e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 761, @@ -105566,12 +95418,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x80", + "0x62dd06b9", + "0x3d12f2d086f66d08e020a261097", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105580,9 +95432,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c860714d6e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 762, @@ -105591,12 +95441,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x902f1ac", + "0x40", + "0x80", + "0x62dd06b9", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105605,9 +95455,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c860714d6e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 763, @@ -105616,11 +95464,11 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x902f1ac", + "0x40", + "0x80", + "0x62dd06b9", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105629,9 +95477,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c860714d6e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 765, @@ -105640,12 +95486,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x902f1ac", + "0x40", + "0x80", + "0x62dd06b9", + "0x3d12f2d086f66d08e020a261097", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105654,9 +95500,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c860714d6e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 766, @@ -105665,13 +95509,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x902f1ac", + "0x40", + "0x80", + "0x62dd06b9", + "0x3d12f2d086f66d08e020a261097", + "0x20", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105680,9 +95524,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c860714d6e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 767, @@ -105691,24 +95533,21 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x902f1ac", + "0x40", + "0x80", + "0x62dd06b9", + "0x3d12f2d086f66d08e020a261097", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" + "000000000000000000000000000000000000000000000000000004c860714d6e" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 768, @@ -105717,10 +95556,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x902f1ac", + "0x40", + "0x80", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105730,9 +95569,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000004c860714d6e", "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 773, @@ -105741,11 +95578,11 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x902f1ac", + "0x40", + "0x80", + "0x62dd06b9", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105755,9 +95592,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000004c860714d6e", "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 774, @@ -105766,10 +95601,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x902f1ac", + "0x40", + "0x80", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105779,9 +95614,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000004c860714d6e", "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 775, @@ -105790,11 +95623,11 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x902f1ac", + "0x40", + "0x80", + "0x62dd06b9", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105804,9 +95637,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000004c860714d6e", "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 776, @@ -105815,12 +95646,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x902f1ac", + "0x40", + "0x80", + "0x62dd06b9", + "0x80", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105830,9 +95661,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000004c860714d6e", "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 777, @@ -105841,11 +95670,11 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x902f1ac", + "0x40", + "0x80", + "0x62dd06b9", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105853,12 +95682,9 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 778, @@ -105867,9 +95693,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x902f1ac", + "0x40", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105880,9 +95706,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", "0000000000000000000000000000000000000000000000000000000062dd06b9" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 779, @@ -105891,9 +95715,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x902f1ac", + "0x80", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105904,9 +95728,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", "0000000000000000000000000000000000000000000000000000000062dd06b9" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 780, @@ -105915,9 +95737,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x902f1ac", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105928,9 +95750,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", "0000000000000000000000000000000000000000000000000000000062dd06b9" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 781, @@ -105939,9 +95759,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x902f1ac", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105952,9 +95772,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", "0000000000000000000000000000000000000000000000000000000062dd06b9" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 782, @@ -105963,10 +95781,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x902f1ac", + "0x80", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -105977,9 +95795,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", "0000000000000000000000000000000000000000000000000000000062dd06b9" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 783, @@ -105988,10 +95804,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x902f1ac", + "0x80", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106002,9 +95818,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", "0000000000000000000000000000000000000000000000000000000062dd06b9" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 784, @@ -106013,9 +95827,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x902f1ac", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106026,9 +95840,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", "0000000000000000000000000000000000000000000000000000000062dd06b9" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 786, @@ -106037,10 +95849,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x902f1ac", + "0x80", + "0x0", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106051,9 +95863,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", "0000000000000000000000000000000000000000000000000000000062dd06b9" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 787, @@ -106062,9 +95872,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x902f1ac", + "0x80", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106075,9 +95885,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", "0000000000000000000000000000000000000000000000000000000062dd06b9" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 788, @@ -106086,9 +95894,9 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 3, "stack": [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x902f1ac", + "0x60", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106099,9 +95907,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", "0000000000000000000000000000000000000000000000000000000062dd06b9" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12346, @@ -106110,32 +95916,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106168,9 +95974,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12347, @@ -106179,32 +95983,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106237,9 +96041,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12348, @@ -106248,33 +96050,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106307,9 +96109,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12349, @@ -106318,33 +96118,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106377,9 +96177,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12352, @@ -106388,34 +96186,34 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000304a" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x0", + "0x1", + "0x304a" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106448,9 +96246,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12362, @@ -106459,32 +96255,32 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106517,9 +96313,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12363, @@ -106528,32 +96322,32 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106586,9 +96380,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12364, @@ -106597,31 +96389,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000342" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac", + "0x342" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106654,9 +96446,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12365, @@ -106665,30 +96455,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000902f1ac" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x902f1ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106721,9 +96511,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12366, @@ -106732,29 +96520,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106787,9 +96575,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12367, @@ -106798,28 +96584,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106852,9 +96638,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12369, @@ -106863,29 +96647,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106918,9 +96702,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12370, @@ -106929,29 +96711,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -106984,9 +96766,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12371, @@ -106995,30 +96775,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107051,9 +96831,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12373, @@ -107062,31 +96840,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107119,9 +96897,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12374, @@ -107130,31 +96906,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107187,9 +96963,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12376, @@ -107198,32 +96972,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107256,9 +97030,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12377, @@ -107267,33 +97039,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107326,9 +97098,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12378, @@ -107337,32 +97107,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000007f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x7f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107395,9 +97165,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12379, @@ -107406,31 +97174,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107463,9 +97231,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12380, @@ -107474,32 +97240,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60", + "0x60", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107532,9 +97298,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12381, @@ -107543,31 +97307,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107600,9 +97364,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12382, @@ -107611,32 +97373,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60", + "0x39e", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107669,9 +97431,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12384, @@ -107680,33 +97440,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60", + "0x39e", + "0x39e", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107739,9 +97499,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12385, @@ -107750,31 +97508,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107807,9 +97565,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12386, @@ -107818,30 +97574,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107874,9 +97630,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12387, @@ -107885,31 +97639,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x60", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -107942,9 +97696,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12388, @@ -107953,30 +97705,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x33e", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108009,9 +97761,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12389, @@ -108020,30 +97770,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x39e", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108076,9 +97826,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12392, @@ -108087,31 +97835,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000306e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x39e", + "0x33e", + "0x306e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108144,9 +97892,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12393, @@ -108155,31 +97901,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x33e", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108212,9 +97958,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12394, @@ -108223,31 +97967,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108280,9 +98024,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12397, @@ -108291,32 +98033,32 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "00000000000000000000000000000000000000000000000000000000000056da" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x56da" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108349,9 +98091,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22234, @@ -108360,31 +98100,31 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108417,9 +98157,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22235, @@ -108428,31 +98166,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108485,9 +98223,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22237, @@ -108496,32 +98232,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108554,9 +98290,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22238, @@ -108565,33 +98299,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108624,9 +98358,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22240, @@ -108635,34 +98367,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108695,9 +98427,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22242, @@ -108706,35 +98436,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108767,9 +98497,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22243, @@ -108778,36 +98506,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x60", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108840,9 +98568,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22244, @@ -108851,37 +98577,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x60", + "0x33e", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108914,9 +98640,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22245, @@ -108925,36 +98649,106 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x60", + "0x60" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000" + ], + "refund": 4800 + }, + { + "pc": 22246, + "op": "ISZERO", + "gas": 97221, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -108987,81 +98781,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 22246, - "op": "ISZERO", - "gas": 97221, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22247, @@ -109070,35 +98790,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -109131,9 +98851,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22250, @@ -109142,36 +98860,36 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000056ee" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x1", + "0x56ee" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -109204,9 +98922,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22254, @@ -109215,34 +98931,34 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -109275,9 +98991,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22255, @@ -109286,34 +99000,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -109346,9 +99060,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22258, @@ -109357,35 +99069,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -109418,9 +99130,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22259, @@ -109429,36 +99139,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -109491,9 +99201,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22262, @@ -109502,37 +99210,37 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000004f9d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e", + "0x4f9d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -109565,9 +99273,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20381, @@ -109576,36 +99282,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -109638,9 +99344,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20382, @@ -109649,36 +99353,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -109711,9 +99415,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20383, @@ -109722,37 +99424,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -109785,9 +99487,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20384, @@ -109796,37 +99496,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -109859,9 +99559,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20399, @@ -109870,38 +99568,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e", + "0x4c860714d6e", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -109934,9 +99632,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20400, @@ -109945,39 +99641,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e", + "0x4c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110010,9 +99706,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20401, @@ -110021,38 +99715,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e", + "0x4c860714d6e", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110085,9 +99779,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20402, @@ -110096,39 +99788,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e", + "0x4c860714d6e", + "0x4c860714d6e", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110161,9 +99853,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20403, @@ -110172,38 +99862,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e", + "0x4c860714d6e", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110236,9 +99926,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20406, @@ -110247,39 +99935,39 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000b23" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e", + "0x4c860714d6e", + "0x1", + "0xb23" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110312,9 +100000,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 2851, @@ -110323,37 +100009,37 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110386,9 +100072,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 2852, @@ -110397,37 +100081,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x56f7", + "0x33e", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110460,9 +100144,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 2853, @@ -110471,37 +100153,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000033e", - "00000000000000000000000000000000000000000000000000000000000056f7" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x33e", + "0x56f7" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110534,9 +100216,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 2854, @@ -110545,37 +100225,37 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000056f7", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x56f7", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110608,9 +100288,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 2855, @@ -110619,36 +100297,36 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000056f7" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x56f7" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110681,9 +100359,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22263, @@ -110692,35 +100368,35 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110753,9 +100429,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22264, @@ -110764,35 +100438,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110825,9 +100499,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22265, @@ -110836,35 +100508,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110897,9 +100569,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22266, @@ -110908,34 +100578,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -110968,9 +100638,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22269, @@ -110979,35 +100647,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111040,9 +100708,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22271, @@ -111051,36 +100717,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111113,9 +100779,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22272, @@ -111124,37 +100788,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x20", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111187,9 +100851,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22273, @@ -111198,36 +100860,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111260,9 +100922,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22276, @@ -111271,37 +100931,37 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "0000000000000000000000000000000000000000000000000000000000004f9d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e", + "0x4f9d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111334,9 +100994,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20381, @@ -111345,36 +101003,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111407,9 +101065,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20382, @@ -111418,36 +101074,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111480,9 +101136,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20383, @@ -111491,37 +101145,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "000000000000000000000000000000000000000000000000000000000000035e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e", + "0x35e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111554,9 +101208,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20384, @@ -111565,37 +101217,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111628,9 +101280,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20399, @@ -111639,38 +101289,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111703,9 +101353,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20400, @@ -111714,39 +101362,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111779,9 +101427,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20401, @@ -111790,38 +101436,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e", + "0x3d12f2d086f66d08e020a261097", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111854,9 +101500,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20402, @@ -111865,39 +101509,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e", + "0x3d12f2d086f66d08e020a261097", + "0x3d12f2d086f66d08e020a261097", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -111930,9 +101574,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20403, @@ -111941,38 +101583,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e", + "0x3d12f2d086f66d08e020a261097", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112005,9 +101647,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20406, @@ -112016,39 +101656,39 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000b23" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e", + "0x3d12f2d086f66d08e020a261097", + "0x1", + "0xb23" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112081,9 +101721,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 2851, @@ -112092,37 +101730,37 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112155,9 +101793,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 2852, @@ -112166,37 +101802,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x5705", + "0x35e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112229,9 +101865,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 2853, @@ -112240,37 +101874,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000000000035e", - "0000000000000000000000000000000000000000000000000000000000005705" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x35e", + "0x5705" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112303,9 +101937,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 2854, @@ -112314,37 +101946,37 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000005705", - "000000000000000000000000000000000000000000000000000000000000035e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x5705", + "0x35e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112377,9 +102009,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 2855, @@ -112388,36 +102018,36 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000005705" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x5705" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112450,9 +102080,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22277, @@ -112461,35 +102089,35 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112522,9 +102150,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22278, @@ -112533,37 +102159,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x0", + "0x0", + "0x3d12f2d086f66d08e020a261097" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000039e", @@ -112594,9 +102220,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22279, @@ -112605,35 +102229,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112666,9 +102290,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22280, @@ -112677,34 +102299,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112737,9 +102359,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22282, @@ -112748,35 +102368,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112809,9 +102429,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22283, @@ -112820,36 +102438,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x40", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112882,9 +102500,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22284, @@ -112893,35 +102509,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x37e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -112954,9 +102570,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22285, @@ -112965,35 +102579,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113026,9 +102640,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22288, @@ -113037,36 +102649,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113099,9 +102711,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22289, @@ -113110,37 +102720,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113173,9 +102783,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 22292, @@ -113184,38 +102792,38 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000005f83" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f", + "0x62dd06b9", + "0x5f83" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113248,9 +102856,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 24451, @@ -113259,37 +102865,37 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113322,9 +102928,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 24452, @@ -113333,37 +102937,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113396,9 +103000,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 24457, @@ -113407,38 +103009,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f", + "0x62dd06b9", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113471,9 +103073,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 24458, @@ -113482,39 +103082,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f", + "0x62dd06b9", + "0xffffffff", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113547,9 +103147,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 24459, @@ -113558,38 +103156,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f", + "0x62dd06b9", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113622,9 +103220,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 24460, @@ -113633,39 +103229,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f", + "0x62dd06b9", + "0x62dd06b9", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113698,9 +103294,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 24461, @@ -113709,38 +103303,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f", + "0x62dd06b9", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113773,9 +103367,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 24464, @@ -113784,39 +103376,39 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f", + "0x62dd06b9", + "0x1", + "0x1479" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113849,9 +103441,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 5241, @@ -113860,37 +103450,37 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113923,9 +103513,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 5242, @@ -113934,37 +103522,37 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -113997,9 +103585,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 5243, @@ -114008,36 +103594,36 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000506f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x506f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114070,9 +103656,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20591, @@ -114081,35 +103665,35 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114142,9 +103726,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20592, @@ -114153,35 +103735,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114214,9 +103796,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20593, @@ -114225,36 +103805,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x62dd06b9", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114287,9 +103867,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20594, @@ -114298,36 +103876,36 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x62dd06b9", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114360,9 +103938,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20595, @@ -114371,35 +103947,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114432,9 +104008,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20596, @@ -114443,34 +104017,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000033e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x33e", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114503,9 +104077,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20597, @@ -114514,34 +104086,34 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000000000033e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x62dd06b9", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x33e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114574,9 +104146,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20598, @@ -114585,33 +104155,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x39e", + "0x62dd06b9", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114644,9 +104214,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20599, @@ -114655,33 +104223,33 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x4c860714d6e", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114714,9 +104282,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20600, @@ -114725,32 +104291,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000306e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x306e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114783,9 +104349,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 20601, @@ -114794,32 +104358,32 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "000000000000000000000000000000000000000000000000000000000000306e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x306e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114852,9 +104416,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12398, @@ -114863,31 +104425,31 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114920,9 +104482,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12399, @@ -114931,31 +104491,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -114988,9 +104548,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12400, @@ -114999,30 +104557,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115055,9 +104613,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12415, @@ -115066,31 +104622,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115123,9 +104679,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12416, @@ -115134,30 +104688,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115190,9 +104744,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12417, @@ -115201,30 +104753,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115257,9 +104809,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12418, @@ -115268,29 +104818,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115323,9 +104873,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12433, @@ -115334,30 +104882,158 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0xffffffffffffffffffffffffffff" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000039e", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000" + ], + "refund": 4800 + }, + { + "pc": 12434, + "op": "SWAP2", + "gas": 96927, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000039e", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000" + ], + "refund": 4800 + }, + { + "pc": 12435, + "op": "POP", + "gas": 96924, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115390,141 +105066,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12434, - "op": "SWAP2", - "gas": 96927, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 12435, - "op": "POP", - "gas": 96924, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12436, @@ -115533,28 +105075,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115587,9 +105129,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12438, @@ -115598,29 +105138,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115653,9 +105193,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12439, @@ -115664,30 +105202,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115720,9 +105258,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12440, @@ -115731,31 +105267,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115788,9 +105324,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12461, @@ -115799,32 +105333,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115857,9 +105391,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12462, @@ -115868,31 +105400,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115925,9 +105457,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12463, @@ -115936,32 +105466,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -115994,9 +105524,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12484, @@ -116005,33 +105533,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116064,9 +105592,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12485, @@ -116075,32 +105601,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116133,9 +105659,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12486, @@ -116144,31 +105668,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116201,9 +105725,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12489, @@ -116212,32 +105734,32 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000030d0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x1", + "0x30d0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116270,9 +105792,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12496, @@ -116281,30 +105801,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116337,9 +105857,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12497, @@ -116348,30 +105866,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116404,9 +105922,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12498, @@ -116415,31 +105931,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116472,9 +105988,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12499, @@ -116483,32 +105997,32 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116541,9 +106055,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12500, @@ -116552,32 +106064,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116610,9 +106122,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12501, @@ -116621,32 +106131,32 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116679,9 +106189,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12502, @@ -116690,31 +106198,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116747,9 +106255,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12503, @@ -116758,31 +106264,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116815,9 +106321,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12504, @@ -116826,30 +106330,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116882,9 +106386,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12507, @@ -116893,31 +106395,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -116950,9 +106452,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12508, @@ -116961,32 +106461,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117019,9 +106519,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12509, @@ -117030,33 +106528,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117089,9 +106587,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12530, @@ -117100,34 +106596,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117160,9 +106656,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12531, @@ -117171,33 +106665,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117230,9 +106724,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12536, @@ -117241,34 +106733,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117301,9 +106793,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12537, @@ -117312,35 +106802,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117373,9 +106863,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12539, @@ -117384,36 +106872,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117446,9 +106934,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12540, @@ -117457,36 +106943,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117519,9 +107005,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12541, @@ -117530,37 +107014,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x39e", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117593,9 +107077,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12546, @@ -117604,38 +107086,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x39e", + "0x70a08231", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117668,9 +107150,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12547, @@ -117679,37 +107159,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x39e", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117742,9 +107222,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12549, @@ -117753,38 +107231,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x39e", + "0x70a08231", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117817,9 +107295,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12550, @@ -117828,37 +107304,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "70a0823100000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x39e", + "0x70a0823100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117891,9 +107367,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12551, @@ -117902,38 +107376,38 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "70a0823100000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x39e", + "0x70a0823100000000000000000000000000000000000000000000000000000000", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -117964,12 +107438,9 @@ export const trace: any = JSON.parse(` "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", "00000000000000000000000000000000000000000000000004c860714d6e0000", "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "0000000000000000000000000000000000000000000000000000000000000000" + "000000000000000000000000000000000000000000000000000062dd06b90000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12552, @@ -117978,36 +107449,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118041,9 +107512,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12554, @@ -118052,37 +107521,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x39e", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118116,9 +107585,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12555, @@ -118127,36 +107594,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x3a2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118190,9 +107657,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12558, @@ -118201,37 +107666,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2", - "000000000000000000000000000000000000000000000000000000000000120c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x3a2", + "0x120c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118265,9 +107730,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12559, @@ -118276,37 +107739,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003a2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0x3a2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118340,9 +107803,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12560, @@ -118351,37 +107812,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x3a2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118415,9 +107876,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12563, @@ -118426,38 +107885,38 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2", - "0000000000000000000000000000000000000000000000000000000000005a3c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x3a2", + "0x5a3c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118491,9 +107950,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 23100, @@ -118502,37 +107959,37 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x3a2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118566,9 +108023,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 23101, @@ -118577,37 +108032,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x3a2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118641,9 +108096,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 23122, @@ -118652,38 +108105,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x3a2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118717,9 +108170,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 23123, @@ -118728,38 +108179,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000003a2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x3a2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118793,9 +108244,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 23124, @@ -118804,38 +108253,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x3a2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118869,9 +108318,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 23125, @@ -118880,38 +108327,111 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0x3a2", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "000000000000000000000000000000000000000000000000000000000000039e", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003a2", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b970a0", + "8231000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 4800 + }, + { + "pc": 23126, + "op": "DUP2", + "gas": 96771, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0x3a2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -118945,84 +108465,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b970a0", "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } - }, - { - "pc": 23126, - "op": "DUP2", - "gas": 96771, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003a2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 23127, @@ -119031,38 +108474,38 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003a2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003a2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0x3a2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x3a2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -119094,12 +108537,9 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c860714d6e0000", "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b970a0", - "8231000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "8231000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 23128, @@ -119108,36 +108548,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003a2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0x3a2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -119172,9 +108612,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 23130, @@ -119183,37 +108621,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003a2", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0x3a2", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -119248,9 +108686,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 23131, @@ -119259,36 +108695,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003c2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x120c", + "0x3c2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -119323,9 +108759,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 23132, @@ -119334,36 +108768,36 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "000000000000000000000000000000000000000000000000000000000000120c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x120c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -119398,9 +108832,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4620, @@ -119409,35 +108841,35 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -119472,9 +108904,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4621, @@ -119483,35 +108913,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -119546,9 +108976,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4623, @@ -119557,36 +108985,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -119621,9 +109049,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4625, @@ -119632,37 +109058,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -119697,9 +109123,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4626, @@ -119708,37 +109132,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -119773,9 +109197,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4627, @@ -119784,38 +109206,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -119850,9 +109272,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4628, @@ -119861,39 +109281,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000039e", - "00000000000000000000000000000000000000000000000000000000000003c2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x39e", + "0x3c2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -119928,9 +109348,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4629, @@ -119939,38 +109357,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120005,9 +109423,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4630, @@ -120016,39 +109432,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120083,9 +109499,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4631, @@ -120094,40 +109508,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24", + "0x39e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120162,9 +109576,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4632, @@ -120173,41 +109585,41 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24", + "0x39e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120242,9 +109654,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4633, @@ -120253,41 +109663,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000088a" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24", + "0x39e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x88a" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120322,9 +109732,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4634, @@ -120333,41 +109741,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24", + "0x39e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120402,9 +109810,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4635, @@ -120413,42 +109819,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24", + "0x39e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120483,9 +109889,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4636, @@ -120494,42 +109898,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24", + "0x39e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120564,9 +109968,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4639, @@ -120575,43 +109977,43 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001224" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24", + "0x39e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x1", + "0x1224" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120646,9 +110048,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4644, @@ -120657,41 +110057,41 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24", + "0x39e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120726,9 +110126,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4645, @@ -120737,41 +110135,41 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24", + "0x39e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120806,9 +110204,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4646, @@ -120817,40 +110213,40 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24", + "0x39e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120885,9 +110281,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4647, @@ -120896,41 +110290,41 @@ export const trace: any = JSON.parse(` "gasCost": 95083, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000001794e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x20", + "0x39e", + "0x24", + "0x39e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x1794e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -120965,9 +110359,7 @@ export const trace: any = JSON.parse(` "82310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 0, @@ -120976,10 +110368,7 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 2, @@ -120988,12 +110377,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" + "0x80" ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 4, @@ -121002,17 +110388,10 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x80", + "0x40" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 5, @@ -121026,9 +110405,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 7, @@ -121037,16 +110414,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 8, @@ -121055,17 +110430,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 9, @@ -121074,16 +110447,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 12, @@ -121092,17 +110463,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000006d" + "0x0", + "0x6d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 13, @@ -121116,9 +110485,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 15, @@ -121127,16 +110494,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 16, @@ -121145,16 +110510,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" + "0x70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 46, @@ -121163,17 +110526,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "0000000100000000000000000000000000000000000000000000000000000000" + "0x70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", + "0x100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 47, @@ -121182,17 +110543,15 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "0000000100000000000000000000000000000000000000000000000000000000", - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" + "0x100000000000000000000000000000000000000000000000000000000", + "0x70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 48, @@ -121201,16 +110560,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 53, @@ -121219,17 +110576,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x70a08231", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 54, @@ -121238,16 +110593,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 55, @@ -121256,17 +110609,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 60, @@ -121275,18 +110626,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000003659cfe6" + "0x70a08231", + "0x70a08231", + "0x3659cfe6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 61, @@ -121295,17 +110644,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 64, @@ -121314,18 +110661,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000077" + "0x70a08231", + "0x0", + "0x77" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 65, @@ -121334,16 +110679,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 66, @@ -121352,17 +110695,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 71, @@ -121371,18 +110712,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000004f1ef286" + "0x70a08231", + "0x70a08231", + "0x4f1ef286" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 72, @@ -121391,17 +110730,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 75, @@ -121410,18 +110747,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ba" + "0x70a08231", + "0x0", + "0xba" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 76, @@ -121430,16 +110765,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 77, @@ -121448,17 +110781,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 82, @@ -121467,18 +110798,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005c60da1b" + "0x70a08231", + "0x70a08231", + "0x5c60da1b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 83, @@ -121487,17 +110816,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 86, @@ -121506,18 +110833,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000108" + "0x70a08231", + "0x0", + "0x108" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 87, @@ -121526,16 +110851,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 88, @@ -121544,17 +110867,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 93, @@ -121563,18 +110884,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000008f283970" + "0x70a08231", + "0x70a08231", + "0x8f283970" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 94, @@ -121583,17 +110902,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 97, @@ -121602,18 +110919,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000015f" + "0x70a08231", + "0x0", + "0x15f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 98, @@ -121622,16 +110937,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 99, @@ -121640,17 +110953,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 104, @@ -121659,18 +110970,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000f851a440" + "0x70a08231", + "0x70a08231", + "0xf851a440" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 105, @@ -121679,17 +110988,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 108, @@ -121698,18 +111005,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a2" + "0x70a08231", + "0x0", + "0x1a2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 109, @@ -121718,16 +111023,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 110, @@ -121736,16 +111039,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 113, @@ -121754,17 +111055,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x70a08231", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 116, @@ -121773,18 +111072,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000001f9" + "0x70a08231", + "0x75", + "0x1f9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 505, @@ -121793,17 +111090,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x70a08231", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 506, @@ -121812,17 +111107,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x70a08231", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 509, @@ -121831,18 +111124,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 512, @@ -121851,19 +111142,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000576" + "0x70a08231", + "0x75", + "0x201", + "0x576" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1398, @@ -121872,18 +111161,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1399, @@ -121892,18 +111179,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1402, @@ -121912,19 +111197,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" + "0x70a08231", + "0x75", + "0x201", + "0x57e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1405, @@ -121933,20 +111216,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "00000000000000000000000000000000000000000000000000000000000006a8" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x6a8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1704, @@ -121955,19 +111236,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" + "0x70a08231", + "0x75", + "0x201", + "0x57e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1705, @@ -121976,19 +111255,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" + "0x70a08231", + "0x75", + "0x201", + "0x57e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1707, @@ -121997,20 +111274,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1708, @@ -122019,21 +111294,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1741, @@ -122042,22 +111315,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1743, @@ -122066,23 +111337,21 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1744, @@ -122091,22 +111360,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1745, @@ -122115,22 +111382,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1746, @@ -122139,21 +111404,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" - } + "refund": 4800 }, { "pc": 1747, @@ -122162,13 +111425,13 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -122185,7 +111448,8 @@ export const trace: any = JSON.parse(` "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 4800 }, { "pc": 1748, @@ -122194,30 +111458,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1749, @@ -122226,30 +111480,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1750, @@ -122258,29 +111502,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1751, @@ -122289,28 +111523,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1752, @@ -122319,28 +111543,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "000000000000000000000000000000000000000000000000000000000000057e" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x57e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1406, @@ -122349,27 +111563,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1407, @@ -122378,27 +111582,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1428, @@ -122407,28 +111601,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1429, @@ -122437,27 +111621,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1430, @@ -122466,28 +111640,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1451, @@ -122496,29 +111660,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1452, @@ -122527,28 +111681,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1453, @@ -122557,27 +111701,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x201", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1454, @@ -122586,27 +111720,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x201", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1455, @@ -122615,27 +111739,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x201", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1456, @@ -122644,27 +111758,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x201", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1459, @@ -122673,28 +111777,18 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000647" + "0x70a08231", + "0x75", + "0x201", + "0x1", + "0x647" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1607, @@ -122703,26 +111797,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1608, @@ -122731,26 +111815,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1611, @@ -122759,27 +111833,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" + "0x70a08231", + "0x75", + "0x201", + "0x64f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1614, @@ -122788,28 +111852,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f", - "0000000000000000000000000000000000000000000000000000000000000777" + "0x70a08231", + "0x75", + "0x201", + "0x64f", + "0x777" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1911, @@ -122818,27 +111872,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" + "0x70a08231", + "0x75", + "0x201", + "0x64f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1912, @@ -122847,27 +111891,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" + "0x70a08231", + "0x75", + "0x201", + "0x64f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1615, @@ -122876,26 +111910,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1616, @@ -122904,26 +111928,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 513, @@ -122932,25 +111946,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x70a08231", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 514, @@ -122959,25 +111963,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x70a08231", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 517, @@ -122986,26 +111980,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211" + "0x70a08231", + "0x75", + "0x211" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 520, @@ -123014,27 +111998,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" + "0x70a08231", + "0x75", + "0x211", + "0x20c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 523, @@ -123043,28 +112017,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000651" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x651" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1617, @@ -123073,27 +112037,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" + "0x70a08231", + "0x75", + "0x211", + "0x20c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1618, @@ -123102,27 +112056,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" + "0x70a08231", + "0x75", + "0x211", + "0x20c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1620, @@ -123131,28 +112075,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1621, @@ -123161,29 +112095,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1654, @@ -123192,30 +112116,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1656, @@ -123224,31 +112138,21 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1657, @@ -123257,30 +112161,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1658, @@ -123289,30 +112183,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1659, @@ -123321,29 +112205,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1660, @@ -123352,13 +112226,13 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -123375,7 +112249,8 @@ export const trace: any = JSON.parse(` "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 4800 }, { "pc": 1661, @@ -123384,30 +112259,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1662, @@ -123416,30 +112281,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1663, @@ -123448,29 +112303,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1664, @@ -123479,28 +112324,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1665, @@ -123509,28 +112344,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "000000000000000000000000000000000000000000000000000000000000020c" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x20c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 524, @@ -123539,27 +112364,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 525, @@ -123568,27 +112383,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 528, @@ -123597,28 +112402,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000682" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x682" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1666, @@ -123627,27 +112422,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1667, @@ -123656,27 +112441,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1668, @@ -123685,28 +112460,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1670, @@ -123715,29 +112480,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x24", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1671, @@ -123746,30 +112501,20 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x24", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1672, @@ -123778,27 +112523,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1674, @@ -123807,28 +112542,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1675, @@ -123837,29 +112562,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1676, @@ -123868,30 +112583,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0", + "0x24" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1678, @@ -123900,31 +112605,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0", + "0x24", + "0x0" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1679, @@ -123933,32 +112628,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0", + "0x24", + "0x0", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1680, @@ -123967,33 +112652,23 @@ export const trace: any = JSON.parse(` "gasCost": 92869, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000017085" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0", + "0x24", + "0x0", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x17085" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 0, @@ -124002,18 +112677,7 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2, @@ -124022,20 +112686,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" + "0x80" ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4, @@ -124044,25 +112697,10 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x80", + "0x40" ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5, @@ -124076,17 +112714,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 6, @@ -124095,24 +112723,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 7, @@ -124121,25 +112739,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8, @@ -124148,25 +112756,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11, @@ -124175,26 +112773,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" + "0x0", + "0x1", + "0x10" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16, @@ -124203,24 +112791,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17, @@ -124229,24 +112807,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 18, @@ -124260,17 +112828,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20, @@ -124279,24 +112837,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 21, @@ -124305,25 +112853,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22, @@ -124332,24 +112870,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 25, @@ -124358,25 +112886,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000336" + "0x0", + "0x336" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 26, @@ -124390,17 +112908,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 28, @@ -124409,24 +112917,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 29, @@ -124435,24 +112933,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" + "0x70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 31, @@ -124461,25 +112949,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 32, @@ -124488,24 +112966,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 33, @@ -124514,25 +112982,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 38, @@ -124541,26 +112999,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000007f2eecc3" + "0x70a08231", + "0x70a08231", + "0x7f2eecc3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 39, @@ -124569,25 +113017,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 42, @@ -124596,26 +113034,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001b2" + "0x70a08231", + "0x1", + "0x1b2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 434, @@ -124624,24 +113052,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 435, @@ -124650,24 +113068,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 436, @@ -124676,25 +113084,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 441, @@ -124703,26 +113101,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000003644e515" + "0x70a08231", + "0x70a08231", + "0x3644e515" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 442, @@ -124731,25 +113119,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 445, @@ -124758,26 +113136,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x70a08231", + "0x0", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 446, @@ -124786,24 +113154,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 447, @@ -124812,25 +113170,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 452, @@ -124839,26 +113187,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000004e44d956" + "0x70a08231", + "0x70a08231", + "0x4e44d956" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 453, @@ -124867,25 +113205,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 456, @@ -124894,26 +113222,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000022a" + "0x70a08231", + "0x0", + "0x22a" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 457, @@ -124922,24 +113240,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 458, @@ -124948,25 +113256,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 463, @@ -124975,26 +113273,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005a049a70" + "0x70a08231", + "0x70a08231", + "0x5a049a70" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 464, @@ -125003,25 +113291,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 467, @@ -125030,26 +113308,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000204" + "0x70a08231", + "0x0", + "0x204" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 468, @@ -125058,24 +113326,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 469, @@ -125084,25 +113342,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 474, @@ -125111,26 +113359,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005a049a70" + "0x70a08231", + "0x70a08231", + "0x5a049a70" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 475, @@ -125139,25 +113377,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 478, @@ -125166,26 +113394,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000088e" + "0x70a08231", + "0x0", + "0x88e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 479, @@ -125194,24 +113412,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 480, @@ -125220,25 +113428,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 485, @@ -125247,26 +113445,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005c975abb" + "0x70a08231", + "0x70a08231", + "0x5c975abb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 486, @@ -125275,25 +113463,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 489, @@ -125302,26 +113480,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000008dc" + "0x70a08231", + "0x0", + "0x8dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 490, @@ -125330,24 +113498,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 491, @@ -125356,25 +113514,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 496, @@ -125383,26 +113531,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 497, @@ -125411,25 +113549,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 500, @@ -125438,26 +113566,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008e4" + "0x70a08231", + "0x1", + "0x8e4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2276, @@ -125466,24 +113584,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2277, @@ -125492,24 +113600,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2280, @@ -125518,25 +113616,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d" + "0x70a08231", + "0x40d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2282, @@ -125545,26 +113633,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0x40d", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2283, @@ -125573,27 +113651,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0x40d", + "0x4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2284, @@ -125602,28 +113670,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0x40d", + "0x4", + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2285, @@ -125632,27 +113690,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x40d", + "0x4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2287, @@ -125661,28 +113709,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x40d", + "0x4", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2288, @@ -125691,29 +113729,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x40d", + "0x4", + "0x20", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2289, @@ -125722,28 +113750,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x40d", + "0x4", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2290, @@ -125752,28 +113770,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x40d", + "0x4", + "0x20", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2293, @@ -125782,29 +113790,19 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008fa" + "0x70a08231", + "0x40d", + "0x4", + "0x20", + "0x1", + "0x8fa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2298, @@ -125813,27 +113811,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x40d", + "0x4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2299, @@ -125842,27 +113830,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x40d", + "0x4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2300, @@ -125871,26 +113849,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0x40d", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2301, @@ -125899,26 +113867,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2322, @@ -125927,27 +113885,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2323, @@ -125956,26 +113904,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2326, @@ -125984,27 +113922,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002798" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x2798" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10136, @@ -126013,26 +113941,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10137, @@ -126041,26 +113959,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10158, @@ -126069,27 +113977,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10159, @@ -126098,26 +113996,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10161, @@ -126126,27 +114014,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10162, @@ -126155,27 +114033,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x40d", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10163, @@ -126184,28 +114052,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x40d", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10164, @@ -126214,26 +114072,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x40d", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10166, @@ -126242,27 +114090,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009" + "0x70a08231", + "0x40d", + "0x0", + "0x9" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10168, @@ -126271,28 +114109,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x40d", + "0x0", + "0x9", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10169, @@ -126301,26 +114129,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x40d", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10171, @@ -126329,56 +114147,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0x40d", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10172, - "op": "SHA3", + "op": "KECCAK256", "gas": 92442, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x40d", + "0x40", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10173, @@ -126387,9 +114185,9 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" + "0x70a08231", + "0x40d", + "0xbab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -126406,7 +114204,8 @@ export const trace: any = JSON.parse(` "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 4800 }, { "pc": 10174, @@ -126415,26 +114214,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x70a08231", + "0x40d", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 10175, @@ -126443,26 +114232,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000000000000040d" + "0x70a08231", + "0x4c864948ed5", + "0x40d" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1037, @@ -126471,25 +114250,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x70a08231", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1038, @@ -126498,25 +114267,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x70a08231", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1040, @@ -126525,26 +114284,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0x4c864948ed5", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1041, @@ -126553,27 +114302,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0x4c864948ed5", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1042, @@ -126582,27 +114321,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x4c864948ed5", + "0x40", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1043, @@ -126611,27 +114340,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x70a08231", + "0x80", + "0x40", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1044, @@ -126640,30 +114359,18 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x40", + "0x4c864948ed5", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1045, @@ -126672,9 +114379,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0x80", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -126683,17 +114390,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1046, @@ -126702,9 +114399,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -126713,17 +114410,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1047, @@ -126732,9 +114419,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -126743,17 +114430,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1048, @@ -126762,10 +114439,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -126774,17 +114451,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1049, @@ -126793,10 +114460,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -126805,17 +114472,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1050, @@ -126824,9 +114481,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -126835,17 +114492,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1052, @@ -126854,10 +114501,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x80", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -126866,17 +114513,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1053, @@ -126885,9 +114522,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x80", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -126896,17 +114533,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1054, @@ -126915,9 +114542,9 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x20", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -126926,17 +114553,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1681, @@ -126945,28 +114562,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1682, @@ -126975,29 +114582,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x20" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1684, @@ -127006,30 +114603,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x20", + "0x0" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1685, @@ -127038,31 +114625,21 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x20", + "0x0", + "0x0" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1686, @@ -127071,28 +114648,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1687, @@ -127101,29 +114668,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1689, @@ -127132,30 +114689,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x0" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1690, @@ -127164,31 +114711,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x0", + "0x1" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1691, @@ -127197,30 +114734,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x0" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1694, @@ -127229,31 +114756,21 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006a3" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x0", + "0x6a3" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1695, @@ -127262,29 +114779,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1696, @@ -127293,30 +114800,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x20" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1698, @@ -127325,31 +114822,21 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x20", + "0x0" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4648, @@ -127358,36 +114845,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -127422,17 +114909,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4649, @@ -127441,36 +114918,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -127505,17 +114982,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4650, @@ -127524,37 +114991,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -127589,17 +115056,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4651, @@ -127608,37 +115065,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -127673,17 +115130,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4654, @@ -127692,38 +115139,38 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001238" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x0", + "0x1", + "0x1238" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -127758,17 +115205,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4664, @@ -127777,36 +115214,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -127841,17 +115278,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4665, @@ -127860,36 +115287,36 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -127924,17 +115351,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4666, @@ -127943,35 +115360,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000003c2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x3c2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128006,17 +115423,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4667, @@ -128025,34 +115432,34 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128087,17 +115494,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4668, @@ -128106,33 +115503,33 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128167,17 +115564,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4669, @@ -128186,32 +115573,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128246,17 +115633,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4671, @@ -128265,33 +115642,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128326,17 +115703,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4672, @@ -128345,33 +115712,33 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128406,17 +115773,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4673, @@ -128425,34 +115782,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128487,17 +115844,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4675, @@ -128506,35 +115853,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128569,17 +115916,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4676, @@ -128588,35 +115925,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128651,17 +115988,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4678, @@ -128670,36 +115997,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128734,17 +116061,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4679, @@ -128753,37 +116070,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128818,17 +116135,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4680, @@ -128837,36 +116144,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128901,17 +116208,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4681, @@ -128920,35 +116217,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -128983,17 +116280,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4682, @@ -129002,36 +116289,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20", + "0x20", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -129066,17 +116353,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4683, @@ -129085,35 +116362,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -129148,17 +116425,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4684, @@ -129167,36 +116434,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20", + "0x3be", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -129231,17 +116498,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4686, @@ -129250,37 +116507,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20", + "0x3be", + "0x3be", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -129315,17 +116572,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4687, @@ -129334,35 +116581,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -129397,17 +116644,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4688, @@ -129416,34 +116653,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -129478,17 +116715,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4689, @@ -129497,35 +116724,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x20", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -129560,17 +116787,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4690, @@ -129579,34 +116796,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000039e", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x39e", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -129641,17 +116858,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4691, @@ -129660,34 +116867,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x3be", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -129722,17 +116929,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4694, @@ -129741,35 +116938,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "000000000000000000000000000000000000000000000000000000000000125c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x3be", + "0x39e", + "0x125c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -129804,17 +117001,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4695, @@ -129823,35 +117010,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "000000000000000000000000000000000000000000000000000000000000039e", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x39e", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -129886,17 +117073,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4696, @@ -129905,35 +117082,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -129968,17 +117145,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4699, @@ -129987,36 +117154,36 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "00000000000000000000000000000000000000000000000000000000000057d3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e", + "0x57d3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -130051,17 +117218,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22483, @@ -130070,35 +117227,35 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -130133,17 +117290,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22484, @@ -130152,35 +117299,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -130215,17 +117362,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22486, @@ -130234,36 +117371,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -130298,17 +117435,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22488, @@ -130317,37 +117444,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -130382,17 +117509,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22489, @@ -130401,38 +117518,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e", + "0x0", + "0x20", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -130467,17 +117584,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22490, @@ -130486,39 +117593,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000039e", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e", + "0x0", + "0x20", + "0x39e", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -130553,17 +117660,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22491, @@ -130572,38 +117669,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e", + "0x0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -130638,17 +117735,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22492, @@ -130657,37 +117744,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -130722,17 +117809,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22493, @@ -130741,37 +117818,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -130806,17 +117883,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22496, @@ -130825,38 +117892,38 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000057e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e", + "0x0", + "0x1", + "0x57e4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -130891,17 +117958,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22500, @@ -130910,36 +117967,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -130974,17 +118031,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22501, @@ -130993,36 +118040,36 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -131057,17 +118104,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22502, @@ -131076,35 +118113,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000039e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x39e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -131139,17 +118176,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22503, @@ -131158,35 +118185,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x125c", + "0x3be", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -131221,17 +118248,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22504, @@ -131240,35 +118257,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000000000000000000000000000000000000000125c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x4c864948ed5", + "0x3be", + "0x125c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -131303,17 +118320,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22505, @@ -131322,35 +118329,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x4c864948ed5", + "0x125c", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -131385,17 +118392,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22506, @@ -131404,34 +118401,34 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000000000000125c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x4c864948ed5", + "0x125c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -131466,17 +118463,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4700, @@ -131485,33 +118472,33 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -131546,17 +118533,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4701, @@ -131565,33 +118542,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c860714d6e", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -131626,17 +118603,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4702, @@ -131645,33 +118612,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -131706,17 +118673,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4705, @@ -131725,34 +118682,34 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000003270" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e", + "0x3270" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -131787,17 +118744,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12912, @@ -131806,33 +118753,33 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -131867,17 +118814,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12913, @@ -131886,33 +118823,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -131947,17 +118884,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12914, @@ -131966,34 +118893,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -132028,17 +118955,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12915, @@ -132047,35 +118964,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e", + "0x4c860714d6e", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -132110,17 +119027,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12916, @@ -132129,34 +119036,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -132191,17 +119098,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12917, @@ -132210,35 +119107,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e", + "0x4234167", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -132273,17 +119170,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12918, @@ -132292,36 +119179,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e", + "0x4234167", + "0x4c864948ed5", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -132356,17 +119243,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12919, @@ -132375,35 +119252,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -132438,17 +119315,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12920, @@ -132457,35 +119324,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e", + "0x4234167", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -132520,17 +119387,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12923, @@ -132539,36 +119396,36 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002021" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e", + "0x4234167", + "0x1", + "0x2021" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -132603,17 +119460,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8225, @@ -132622,34 +119469,34 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -132684,17 +119531,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8226, @@ -132703,34 +119540,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3114", + "0x4c864948ed5", + "0x4c860714d6e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -132765,17 +119602,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8227, @@ -132784,34 +119611,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000003114" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4234167", + "0x4c864948ed5", + "0x4c860714d6e", + "0x3114" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -132846,17 +119673,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8228, @@ -132865,34 +119682,34 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4234167", + "0x3114", + "0x4c860714d6e", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -132927,17 +119744,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8229, @@ -132946,33 +119753,33 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003114", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4234167", + "0x3114", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133007,17 +119814,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8230, @@ -133026,32 +119823,32 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000003114" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4234167", + "0x3114" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133086,17 +119883,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12564, @@ -133105,31 +119892,31 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133164,17 +119951,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12565, @@ -133183,31 +119960,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133242,17 +120019,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12566, @@ -133261,31 +120028,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133320,17 +120087,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12567, @@ -133339,30 +120096,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133397,17 +120154,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12570, @@ -133416,31 +120163,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133475,17 +120222,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12571, @@ -133494,32 +120231,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133554,17 +120291,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12572, @@ -133573,33 +120300,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133634,17 +120361,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12573, @@ -133653,34 +120370,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133715,17 +120432,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12576, @@ -133734,35 +120441,35 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003fa7" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3fa7" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133797,17 +120504,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16295, @@ -133816,34 +120513,34 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133878,17 +120575,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16296, @@ -133897,34 +120584,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -133959,17 +120646,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16298, @@ -133978,35 +120655,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -134041,17 +120718,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16299, @@ -134060,36 +120727,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -134124,17 +120791,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16300, @@ -134143,42 +120800,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x4234167" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", + "00000000000000000000000000000000000000000000000000000000000003be", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", @@ -134208,17 +120865,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16301, @@ -134227,36 +120874,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -134291,17 +120938,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16304, @@ -134310,37 +120947,37 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004017" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x1", + "0x4017" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -134375,17 +121012,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16407, @@ -134394,35 +121021,35 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -134457,17 +121084,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16408, @@ -134476,35 +121093,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -134539,17 +121156,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16410, @@ -134558,36 +121165,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -134622,17 +121229,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16411, @@ -134641,37 +121238,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -134706,17 +121303,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16412, @@ -134725,36 +121312,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -134789,17 +121376,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16413, @@ -134808,37 +121385,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -134873,17 +121450,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16414, @@ -134892,37 +121459,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -134957,17 +121524,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16417, @@ -134976,38 +121533,38 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004027" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x1", + "0x0", + "0x4027" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -135042,17 +121599,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16418, @@ -135061,36 +121608,36 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -135125,17 +121672,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16419, @@ -135144,35 +121681,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -135207,17 +121744,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16421, @@ -135226,36 +121753,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -135290,17 +121817,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16422, @@ -135309,37 +121826,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -135374,17 +121891,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16423, @@ -135393,36 +121900,36 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -135457,17 +121964,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16424, @@ -135476,36 +121973,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -135540,17 +122037,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16427, @@ -135559,37 +122046,37 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004030" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x1", + "0x4030" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -135624,17 +122111,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16432, @@ -135643,35 +122120,35 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -135706,17 +122183,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16433, @@ -135725,35 +122192,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -135788,17 +122255,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16435, @@ -135807,36 +122264,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -135871,17 +122328,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16438, @@ -135890,37 +122337,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -135955,17 +122402,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16439, @@ -135974,38 +122411,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -136040,17 +122477,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16442, @@ -136059,39 +122486,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -136126,17 +122553,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16445, @@ -136145,40 +122562,40 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000000033d0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x33d0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -136213,17 +122630,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13264, @@ -136232,39 +122639,39 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -136299,17 +122706,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13265, @@ -136318,39 +122715,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -136385,17 +122782,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13267, @@ -136404,40 +122791,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -136472,17 +122859,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13268, @@ -136491,41 +122868,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x0", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -136560,17 +122937,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13269, @@ -136579,41 +122946,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -136648,17 +123015,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13270, @@ -136667,42 +123024,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -136737,17 +123094,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13273, @@ -136756,43 +123103,43 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000033eb" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x0", + "0x0", + "0x0", + "0x33eb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -136827,17 +123174,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13274, @@ -136846,41 +123183,41 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -136915,17 +123252,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13275, @@ -136934,40 +123261,40 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -137002,17 +123329,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13276, @@ -137021,39 +123338,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -137088,17 +123405,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13277, @@ -137107,40 +123414,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -137175,17 +123482,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13278, @@ -137194,41 +123491,41 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x4234167", + "0x3e5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -137263,17 +123560,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13279, @@ -137282,45 +123569,45 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", + "00000000000000000000000000000000000000000000000000000000000003be", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", @@ -137350,17 +123637,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13280, @@ -137369,41 +123646,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623", + "0x3e5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -137438,17 +123715,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13281, @@ -137457,42 +123724,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623", + "0x3e5", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -137527,17 +123794,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13282, @@ -137546,43 +123803,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623", + "0x3e5", + "0x4234167", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -137617,17 +123874,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13283, @@ -137636,44 +123883,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623", + "0x3e5", + "0x4234167", + "0x101d4db623", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -137708,17 +123955,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13286, @@ -137727,45 +123964,45 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000033e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623", + "0x3e5", + "0x4234167", + "0x101d4db623", + "0x4234167", + "0x33e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -137800,17 +124037,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13288, @@ -137819,43 +124046,43 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623", + "0x3e5", + "0x4234167", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -137890,17 +124117,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13289, @@ -137909,43 +124126,43 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623", + "0x3e5", + "0x4234167", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -137980,17 +124197,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13290, @@ -137999,42 +124206,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000000003e5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623", + "0x3e5", + "0x3e5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -138069,17 +124276,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13291, @@ -138088,41 +124285,41 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -138157,17 +124354,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13292, @@ -138176,41 +124363,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -138245,17 +124432,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13295, @@ -138264,42 +124441,42 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002021" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623", + "0x1", + "0x2021" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -138334,17 +124511,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8225, @@ -138353,40 +124520,40 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -138421,17 +124588,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8226, @@ -138440,40 +124597,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000403e", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x403e", + "0x4234167", + "0x3e5", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -138508,17 +124665,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8227, @@ -138527,40 +124674,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000004234167", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000000000403e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x101d4db623", + "0x4234167", + "0x3e5", + "0x403e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -138595,17 +124742,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8228, @@ -138614,40 +124751,40 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "000000000000000000000000000000000000000000000000000000000000403e", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x101d4db623", + "0x403e", + "0x3e5", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -138682,17 +124819,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8229, @@ -138701,39 +124828,39 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "000000000000000000000000000000000000000000000000000000000000403e", - "00000000000000000000000000000000000000000000000000000000000003e5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x101d4db623", + "0x403e", + "0x3e5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -138768,17 +124895,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8230, @@ -138787,38 +124904,38 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "000000000000000000000000000000000000000000000000000000000000403e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x101d4db623", + "0x403e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -138853,17 +124970,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16446, @@ -138872,37 +124979,37 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -138937,17 +125044,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16447, @@ -138956,37 +125053,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -139021,17 +125118,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16448, @@ -139040,37 +125127,37 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -139105,17 +125192,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16449, @@ -139124,36 +125201,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -139188,17 +125265,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16451, @@ -139207,37 +125274,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -139272,17 +125339,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16454, @@ -139291,38 +125348,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -139357,17 +125414,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16455, @@ -139376,39 +125423,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -139443,17 +125490,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16456, @@ -139462,40 +125499,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -139530,17 +125567,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16459, @@ -139549,41 +125576,41 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000033d0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x33d0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -139618,17 +125645,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13264, @@ -139637,40 +125654,40 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -139705,17 +125722,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13265, @@ -139724,40 +125731,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -139792,17 +125799,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13267, @@ -139811,41 +125808,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -139880,17 +125877,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13268, @@ -139899,42 +125886,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -139969,17 +125956,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13269, @@ -139988,42 +125965,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -140058,17 +126035,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13270, @@ -140077,43 +126044,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -140148,17 +126115,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13273, @@ -140167,44 +126124,44 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000033eb" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x0", + "0x33eb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -140239,17 +126196,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13274, @@ -140258,42 +126205,42 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -140328,17 +126275,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13275, @@ -140347,41 +126284,41 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -140416,17 +126353,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13276, @@ -140435,40 +126362,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -140503,17 +126430,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13277, @@ -140522,43 +126439,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623" - ], - "memory": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x101d4db623" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000003be", @@ -140591,17 +126508,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13278, @@ -140610,42 +126517,42 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -140680,17 +126587,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13279, @@ -140699,41 +126596,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -140768,17 +126665,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13280, @@ -140787,42 +126674,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -140857,17 +126744,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13281, @@ -140876,43 +126753,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x3d12f2d086f66d08e020a261097", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -140947,17 +126824,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13282, @@ -140966,44 +126833,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x3d12f2d086f66d08e020a261097", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -141038,17 +126905,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13283, @@ -141057,45 +126914,45 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x3d12f2d086f66d08e020a261097", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -141130,17 +126987,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13286, @@ -141149,46 +126996,46 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000000000000000000000000000033e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x3d12f2d086f66d08e020a261097", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x101d4db623", + "0x33e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -141223,17 +127070,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13288, @@ -141242,44 +127079,44 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x3d12f2d086f66d08e020a261097", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -141314,17 +127151,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13289, @@ -141333,44 +127160,44 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x3d12f2d086f66d08e020a261097", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -141405,17 +127232,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13290, @@ -141424,43 +127241,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x3d12f2d086f66d08e020a261097", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -141495,17 +127312,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13291, @@ -141514,42 +127321,42 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -141584,17 +127391,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13292, @@ -141603,42 +127400,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -141673,17 +127470,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13295, @@ -141692,43 +127479,43 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002021" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x1", + "0x2021" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -141763,17 +127550,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8225, @@ -141782,41 +127559,41 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -141851,17 +127628,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8226, @@ -141870,41 +127637,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000404c", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x404c", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -141939,17 +127706,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8227, @@ -141958,41 +127715,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000000000404c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x101d4db623", + "0x3d12f2d086f66d08e020a261097", + "0x404c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -142027,17 +127784,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8228, @@ -142046,41 +127793,41 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "000000000000000000000000000000000000000000000000000000000000404c", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x404c", + "0x3d12f2d086f66d08e020a261097", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -142115,17 +127862,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8229, @@ -142134,40 +127871,40 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "000000000000000000000000000000000000000000000000000000000000404c", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x404c", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -142202,17 +127939,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8230, @@ -142221,39 +127948,39 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "000000000000000000000000000000000000000000000000000000000000404c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x404c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -142288,17 +128015,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16460, @@ -142307,38 +128024,38 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -142373,17 +128090,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16461, @@ -142392,38 +128099,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x0", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -142458,17 +128165,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16462, @@ -142477,38 +128174,38 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -142543,17 +128240,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16463, @@ -142562,37 +128249,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -142627,17 +128314,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16465, @@ -142646,38 +128323,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -142712,17 +128389,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16468, @@ -142731,39 +128398,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -142798,17 +128465,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16469, @@ -142817,40 +128474,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -142885,17 +128542,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16472, @@ -142904,41 +128551,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -142973,17 +128620,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16473, @@ -142992,42 +128629,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -143062,17 +128699,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16476, @@ -143081,43 +128708,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -143152,17 +128779,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16479, @@ -143171,44 +128788,44 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000033d0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x33d0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -143243,17 +128860,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13264, @@ -143262,43 +128869,43 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -143333,17 +128940,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13265, @@ -143352,43 +128949,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -143423,17 +129020,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13267, @@ -143442,44 +129029,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -143514,17 +129101,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13268, @@ -143533,45 +129110,45 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -143606,17 +129183,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13269, @@ -143625,45 +129192,45 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -143698,17 +129265,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13270, @@ -143717,51 +129274,51 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x0", + "0x0", + "0x0" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", + "00000000000000000000000000000000000000000000000000000000000003be", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", @@ -143791,17 +129348,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13273, @@ -143810,47 +129357,47 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000033eb" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x33eb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -143885,17 +129432,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13274, @@ -143904,45 +129441,45 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -143977,17 +129514,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13275, @@ -143996,44 +129523,44 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -144068,17 +129595,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13276, @@ -144087,43 +129604,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -144158,17 +129675,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13277, @@ -144177,44 +129684,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -144249,17 +129756,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13278, @@ -144268,45 +129765,45 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x4c860714d6e", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -144341,17 +129838,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13279, @@ -144360,44 +129847,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -144432,17 +129919,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13280, @@ -144451,45 +129928,45 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -144524,17 +130001,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13281, @@ -144543,46 +130010,46 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0", + "0x3e8", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -144617,17 +130084,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13282, @@ -144636,47 +130093,47 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0", + "0x3e8", + "0x4c860714d6e", + "0x12aeb8ba9675b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -144711,17 +130168,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13283, @@ -144730,48 +130177,48 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0", + "0x3e8", + "0x4c860714d6e", + "0x12aeb8ba9675b0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -144806,17 +130253,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13286, @@ -144825,49 +130262,49 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000033e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0", + "0x3e8", + "0x4c860714d6e", + "0x12aeb8ba9675b0", + "0x4c860714d6e", + "0x33e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -144902,17 +130339,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13288, @@ -144921,47 +130348,47 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0", + "0x3e8", + "0x4c860714d6e", + "0x12aeb8ba9675b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -144996,17 +130423,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13289, @@ -145015,47 +130432,47 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0", + "0x3e8", + "0x4c860714d6e", + "0x12aeb8ba9675b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -145090,17 +130507,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13290, @@ -145109,46 +130516,46 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0", + "0x3e8", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -145183,17 +130590,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13291, @@ -145202,45 +130599,45 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -145275,17 +130672,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13292, @@ -145294,45 +130681,45 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -145367,17 +130754,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 13295, @@ -145386,46 +130763,46 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002021" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0", + "0x1", + "0x2021" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -145460,17 +130837,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8225, @@ -145479,44 +130846,44 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -145551,17 +130918,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8226, @@ -145570,44 +130927,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004060", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x4060", + "0x4c860714d6e", + "0x3e8", + "0x12aeb8ba9675b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -145642,17 +130999,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8227, @@ -145661,44 +131008,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000004060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x12aeb8ba9675b0", + "0x4c860714d6e", + "0x3e8", + "0x4060" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -145733,17 +131080,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8228, @@ -145752,44 +131089,44 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000000000000004060", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x12aeb8ba9675b0", + "0x4060", + "0x3e8", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -145824,17 +131161,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8229, @@ -145843,43 +131170,43 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000000000000004060", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x12aeb8ba9675b0", + "0x4060", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -145914,17 +131241,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8230, @@ -145933,42 +131250,42 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000000000000004060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x12aeb8ba9675b0", + "0x4060" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -146003,17 +131320,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16480, @@ -146022,41 +131329,41 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x12aeb8ba9675b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -146091,17 +131398,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16481, @@ -146110,41 +131407,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x101d4db623", + "0x12aeb8ba9675b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -146179,17 +131476,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16482, @@ -146198,41 +131485,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -146267,17 +131554,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16485, @@ -146286,42 +131563,42 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004e24" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623", + "0x4e24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -146356,17 +131633,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20004, @@ -146375,41 +131642,41 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -146444,17 +131711,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20005, @@ -146463,41 +131720,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -146532,17 +131789,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20006, @@ -146551,42 +131798,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -146621,17 +131868,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20007, @@ -146640,43 +131877,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623", + "0x101d4db623", + "0x12aeb8ba9675b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -146711,17 +131948,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20008, @@ -146730,42 +131957,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -146800,17 +132027,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20009, @@ -146819,43 +132036,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623", + "0x12aec8d7e42bd3", + "0x12aeb8ba9675b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -146890,17 +132107,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20010, @@ -146909,44 +132116,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623", + "0x12aec8d7e42bd3", + "0x12aeb8ba9675b0", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -146981,17 +132188,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20011, @@ -147000,48 +132197,48 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623", + "0x12aec8d7e42bd3", + "0x0" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", + "00000000000000000000000000000000000000000000000000000000000003be", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", @@ -147071,17 +132268,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20012, @@ -147090,43 +132277,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623", + "0x12aec8d7e42bd3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -147161,17 +132348,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20015, @@ -147180,44 +132357,44 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002021" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623", + "0x12aec8d7e42bd3", + "0x1", + "0x2021" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -147252,17 +132429,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8225, @@ -147271,42 +132438,42 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -147341,17 +132508,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8226, @@ -147360,42 +132517,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004066", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x4066", + "0x12aeb8ba9675b0", + "0x101d4db623", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -147430,17 +132587,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8227, @@ -147449,42 +132596,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000000000000004066" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x12aec8d7e42bd3", + "0x12aeb8ba9675b0", + "0x101d4db623", + "0x4066" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -147519,17 +132666,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8228, @@ -147538,42 +132675,42 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623", - "0000000000000000000000000000000000000000000000000012aeb8ba9675b0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x12aec8d7e42bd3", + "0x4066", + "0x101d4db623", + "0x12aeb8ba9675b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -147608,17 +132745,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8229, @@ -147627,41 +132754,41 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000004066", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x12aec8d7e42bd3", + "0x4066", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -147696,17 +132823,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8230, @@ -147715,40 +132832,40 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000004066" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x12aec8d7e42bd3", + "0x4066" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -147783,17 +132900,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16486, @@ -147802,39 +132909,39 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -147869,17 +132976,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16487, @@ -147888,39 +132985,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x0", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -147955,17 +133052,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16488, @@ -147974,39 +133061,39 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -148041,17 +133128,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16489, @@ -148060,38 +133137,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -148126,17 +133203,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16490, @@ -148145,39 +133212,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -148212,17 +133279,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16491, @@ -148231,40 +133288,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3", + "0x12aec8d7e42bd3", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -148299,17 +133356,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16492, @@ -148318,41 +133365,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3", + "0x12aec8d7e42bd3", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -148387,17 +133434,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16495, @@ -148406,42 +133443,42 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000004071" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3", + "0x12aec8d7e42bd3", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3", + "0x4071" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -148476,17 +133513,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16497, @@ -148495,40 +133522,40 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3", + "0x12aec8d7e42bd3", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -148563,17 +133590,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16498, @@ -148582,40 +133599,40 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3", + "0x12aec8d7e42bd3", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -148650,17 +133667,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16499, @@ -148669,39 +133676,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000003121", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3121", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -148736,17 +133743,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16500, @@ -148755,39 +133752,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000004234167", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000003121" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x4234167", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3", + "0x3121" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -148822,17 +133819,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16501, @@ -148841,39 +133828,39 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3121", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -148908,17 +133895,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16502, @@ -148927,38 +133904,38 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3121", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -148993,17 +133970,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16503, @@ -149012,37 +133979,37 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623", - "00000000000000000000000000003d82cdcb0e9a0c57c744e79d44428b6a9ea5" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3121", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623", + "0x3d82cdcb0e9a0c57c744e79d44428b6a9ea5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -149077,17 +134044,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16504, @@ -149096,36 +134053,36 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000101d4db623" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3121", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x101d4db623" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -149160,17 +134117,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16505, @@ -149179,35 +134126,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3121", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -149242,17 +134189,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16506, @@ -149261,34 +134198,34 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3121", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -149323,17 +134260,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16507, @@ -149342,33 +134269,33 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3121", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -149403,17 +134330,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16508, @@ -149422,32 +134339,32 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000003121" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3121" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -149482,17 +134399,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12577, @@ -149501,31 +134408,31 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -149560,17 +134467,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12578, @@ -149579,31 +134476,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -149638,17 +134535,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12579, @@ -149657,31 +134544,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -149716,17 +134603,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12580, @@ -149735,30 +134612,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -149793,17 +134670,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12581, @@ -149812,29 +134679,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -149869,17 +134736,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12582, @@ -149888,28 +134745,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -149944,17 +134801,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12583, @@ -149963,27 +134810,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150018,17 +134865,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12584, @@ -150037,26 +134874,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150091,17 +134928,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12586, @@ -150110,27 +134937,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150165,17 +134992,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12587, @@ -150184,28 +135001,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150240,17 +135057,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12588, @@ -150259,29 +135066,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150316,17 +135123,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12609, @@ -150335,30 +135132,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150393,17 +135190,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12610, @@ -150412,29 +135199,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150469,17 +135256,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12611, @@ -150488,30 +135265,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150546,17 +135323,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12632, @@ -150565,31 +135332,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150624,17 +135391,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12633, @@ -150643,30 +135400,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150701,17 +135458,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12634, @@ -150720,29 +135467,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150777,17 +135524,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12637, @@ -150796,30 +135533,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003165" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x1", + "0x3165" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150854,17 +135591,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12645, @@ -150873,28 +135600,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -150929,17 +135656,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12646, @@ -150948,28 +135665,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151004,17 +135721,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12648, @@ -151023,29 +135730,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151080,17 +135787,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12649, @@ -151099,30 +135796,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151157,17 +135854,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12650, @@ -151176,30 +135863,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151234,17 +135921,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12651, @@ -151253,30 +135930,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151311,17 +135988,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12652, @@ -151330,29 +135997,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151387,17 +136054,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12653, @@ -151406,29 +136063,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151463,17 +136120,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12654, @@ -151482,28 +136129,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151538,17 +136185,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12656, @@ -151557,29 +136194,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151614,17 +136251,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12658, @@ -151633,30 +136260,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151691,17 +136318,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12659, @@ -151710,31 +136327,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x2", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151769,17 +136386,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12660, @@ -151788,31 +136395,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x2", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151847,17 +136454,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12661, @@ -151866,30 +136463,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -151924,17 +136521,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12662, @@ -151943,31 +136530,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152002,17 +136589,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12663, @@ -152021,30 +136598,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152079,17 +136656,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12666, @@ -152098,31 +136665,31 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003180" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x3180" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152157,17 +136724,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12667, @@ -152176,29 +136733,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152233,17 +136790,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12668, @@ -152252,30 +136799,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152310,17 +136857,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12671, @@ -152329,31 +136866,31 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000031c1" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x31c1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152388,17 +136925,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12737, @@ -152407,30 +136934,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152465,17 +136992,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12738, @@ -152484,30 +137001,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152542,17 +137059,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12740, @@ -152561,31 +137068,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152620,17 +137127,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12741, @@ -152639,32 +137136,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152699,17 +137196,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12742, @@ -152718,32 +137205,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152778,17 +137265,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12744, @@ -152797,33 +137274,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40", + "0x3be", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152858,17 +137335,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12745, @@ -152877,34 +137344,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40", + "0x3be", + "0x0", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -152939,17 +137406,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed57c2e", "411e000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12746, @@ -152958,32 +137415,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -153018,17 +137475,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed50000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12748, @@ -153037,33 +137484,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40", + "0x3be", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -153098,17 +137545,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed50000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12749, @@ -153117,34 +137554,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40", + "0x3be", + "0x20", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -153179,17 +137616,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed50000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12750, @@ -153198,33 +137625,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40", + "0x3be", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -153259,17 +137686,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed50000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12751, @@ -153278,33 +137695,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x3be", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -153339,17 +137756,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed50000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12752, @@ -153358,34 +137765,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x3be", + "0x40", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -153420,17 +137827,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed50000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12753, @@ -153439,34 +137836,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x3be", + "0x3de", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -153501,17 +137898,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed50000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12754, @@ -153520,32 +137907,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -153580,17 +137967,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed50000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12787, @@ -153599,33 +137976,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003be", - "022c0d9f00000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x3be", + "0x22c0d9f00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -153660,17 +138037,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed50000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12788, @@ -153679,33 +138046,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "022c0d9f00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x22c0d9f00000000000000000000000000000000000000000000000000000000", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -153740,17 +138107,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed50000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12789, @@ -153759,33 +138116,33 @@ export const trace: any = JSON.parse(` "gasCost": 7, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "022c0d9f00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x22c0d9f00000000000000000000000000000000000000000000000000000000", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -153818,20 +138175,9 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000", "00000000000000000000000000000000000000000000000004c864948ed50000", - "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12790, @@ -153840,36 +138186,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", @@ -153900,17 +138246,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12791, @@ -153919,31 +138255,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x3be", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -153979,17 +138315,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12792, @@ -153998,31 +138324,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -154058,17 +138384,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12793, @@ -154077,30 +138393,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -154136,17 +138452,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12814, @@ -154155,31 +138461,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -154215,17 +138521,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12815, @@ -154234,32 +138530,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -154295,17 +138591,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12816, @@ -154314,31 +138600,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -154374,17 +138660,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12817, @@ -154393,31 +138669,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -154453,17 +138729,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12822, @@ -154472,32 +138738,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x3be", + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -154533,17 +138799,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12823, @@ -154552,32 +138808,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -154613,17 +138869,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12826, @@ -154632,33 +138878,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000003229" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3be", + "0x3229" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -154694,17 +138940,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12827, @@ -154713,33 +138949,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -154775,17 +139011,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12828, @@ -154794,34 +139020,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x3be", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -154857,17 +139083,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12829, @@ -154876,34 +139092,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -154939,17 +139155,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12830, @@ -154958,35 +139164,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x3be", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -155022,17 +139228,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12831, @@ -155041,35 +139237,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -155105,17 +139301,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12832, @@ -155124,36 +139310,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003be", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x3be", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -155189,17 +139375,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12833, @@ -155208,36 +139384,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -155273,17 +139449,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12835, @@ -155292,37 +139458,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -155358,17 +139524,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12836, @@ -155377,38 +139533,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x24", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -155444,17 +139600,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12837, @@ -155463,37 +139609,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -155529,17 +139675,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12840, @@ -155548,38 +139684,38 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000005e06" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x5e06" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -155615,17 +139751,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24070, @@ -155634,37 +139760,37 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -155700,17 +139826,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24071, @@ -155719,37 +139835,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -155785,17 +139901,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24073, @@ -155804,38 +139910,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -155871,17 +139977,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24074, @@ -155890,39 +139986,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -155958,17 +140054,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24075, @@ -155977,40 +140063,40 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x0", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -156044,20 +140130,9 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000062dd06b90000", "00000000000000000000000000000000000000000000000004c864948ed50000", "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0d9f000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24076, @@ -156066,38 +140141,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -156134,17 +140209,7 @@ export const trace: any = JSON.parse(` "0d9f000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24077, @@ -156153,39 +140218,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -156222,17 +140287,7 @@ export const trace: any = JSON.parse(` "0d9f000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24079, @@ -156241,40 +140296,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -156311,17 +140366,7 @@ export const trace: any = JSON.parse(` "0d9f000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24080, @@ -156330,41 +140375,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x20", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -156401,17 +140446,7 @@ export const trace: any = JSON.parse(` "0d9f000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24081, @@ -156420,40 +140455,40 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000402" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x402" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -156488,20 +140523,9 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000004c864948ed50000", "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24082, @@ -156510,38 +140534,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -156579,17 +140603,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", "6cab000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24103, @@ -156598,39 +140612,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -156668,17 +140682,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", "6cab000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24104, @@ -156687,40 +140691,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -156758,17 +140762,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", "6cab000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24105, @@ -156777,39 +140771,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -156847,17 +140841,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", "6cab000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24107, @@ -156866,40 +140850,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -156937,17 +140921,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", "6cab000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24108, @@ -156956,41 +140930,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -157028,17 +141002,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", "6cab000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24109, @@ -157047,40 +141011,40 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000422" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x422" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -157116,20 +141080,9 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000000000000000022c", "0d9f000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "6cab000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24110, @@ -157138,38 +141091,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -157208,17 +141161,7 @@ export const trace: any = JSON.parse(` "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", "98f2000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24112, @@ -157227,39 +141170,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -157298,17 +141241,7 @@ export const trace: any = JSON.parse(` "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", "98f2000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24114, @@ -157317,40 +141250,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x80", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -157389,17 +141322,7 @@ export const trace: any = JSON.parse(` "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", "98f2000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24115, @@ -157408,41 +141331,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x80", + "0x60", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -157481,17 +141404,7 @@ export const trace: any = JSON.parse(` "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", "98f2000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24116, @@ -157500,40 +141413,40 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000442" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x80", + "0x442" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -157570,20 +141483,9 @@ export const trace: any = JSON.parse(` "0d9f000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "98f2000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24117, @@ -157592,38 +141494,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -157663,17 +141565,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24120, @@ -157682,39 +141574,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -157754,17 +141646,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24122, @@ -157773,40 +141655,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -157846,17 +141728,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24123, @@ -157865,41 +141737,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x80", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -157939,17 +141811,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24124, @@ -157958,40 +141820,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -158031,17 +141893,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24125, @@ -158050,41 +141902,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -158124,17 +141976,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24128, @@ -158143,42 +141985,42 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000005950" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x5950" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -158218,17 +142060,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22864, @@ -158237,41 +142069,41 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -158311,17 +142143,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22865, @@ -158330,41 +142152,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -158404,17 +142226,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22867, @@ -158423,42 +142235,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -158498,17 +142310,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22868, @@ -158517,43 +142319,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -158593,17 +142395,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22869, @@ -158612,43 +142404,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -158688,17 +142480,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22870, @@ -158707,44 +142489,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -158784,17 +142566,7 @@ export const trace: any = JSON.parse(` "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22871, @@ -158803,45 +142575,45 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000462" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x0", + "0x462" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -158879,20 +142651,9 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0080000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22872, @@ -158901,43 +142662,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -158978,17 +142739,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22875, @@ -158997,44 +142748,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -159075,17 +142826,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22876, @@ -159094,45 +142835,45 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -159173,17 +142914,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22878, @@ -159192,46 +142923,46 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -159272,17 +143003,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22879, @@ -159291,47 +143012,47 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000462" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x20", + "0x462" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -159372,17 +143093,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22880, @@ -159391,46 +143102,46 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -159471,17 +143182,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22882, @@ -159490,47 +143191,47 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -159571,17 +143272,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22883, @@ -159590,48 +143281,48 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x20", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -159672,17 +143363,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22884, @@ -159691,47 +143372,47 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -159772,17 +143453,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22887, @@ -159791,48 +143462,48 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000005f26" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x5f26" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -159873,17 +143544,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24358, @@ -159892,47 +143553,47 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -159973,17 +143634,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24359, @@ -159992,47 +143643,47 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -160073,17 +143724,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24361, @@ -160092,48 +143733,48 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -160174,17 +143815,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24362, @@ -160193,48 +143824,48 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -160275,17 +143906,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24363, @@ -160294,54 +143915,54 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0", + "0x0" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", @@ -160377,17 +143998,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24364, @@ -160396,50 +144007,50 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -160480,17 +144091,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24365, @@ -160499,49 +144100,49 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -160582,17 +144183,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24366, @@ -160601,49 +144192,49 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -160684,17 +144275,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24369, @@ -160703,50 +144284,50 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005f41" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0", + "0x1", + "0x5f41" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -160787,17 +144368,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24385, @@ -160806,48 +144377,48 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -160888,17 +144459,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24386, @@ -160907,48 +144468,48 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -160989,17 +144550,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24387, @@ -161008,49 +144559,49 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -161091,17 +144642,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24388, @@ -161110,50 +144651,50 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -161194,17 +144735,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24389, @@ -161213,49 +144744,49 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -161296,17 +144827,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24390, @@ -161315,49 +144836,49 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -161398,17 +144919,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 24393, @@ -161417,50 +144928,50 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000c55" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0", + "0x1", + "0xc55" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -161501,17 +145012,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3157, @@ -161520,48 +145021,48 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -161602,17 +145103,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3158, @@ -161621,48 +145112,48 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -161703,17 +145194,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3159, @@ -161722,47 +145203,47 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -161803,17 +145284,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3160, @@ -161822,46 +145293,46 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0", + "0x482" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -161902,17 +145373,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3161, @@ -161921,45 +145382,45 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -162000,17 +145461,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 3162, @@ -162019,44 +145470,44 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005968" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x5968" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -162097,17 +145548,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22888, @@ -162116,43 +145557,43 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -162193,17 +145634,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22889, @@ -162212,43 +145643,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -162289,17 +145720,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22891, @@ -162308,44 +145729,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -162386,17 +145807,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22892, @@ -162405,43 +145816,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -162482,17 +145893,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22925, @@ -162501,44 +145902,44 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001f", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x1f", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -162579,17 +145980,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22926, @@ -162598,43 +145989,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000462", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x462", + "0x3be", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -162675,17 +146066,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22927, @@ -162694,43 +146075,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000462" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x0", + "0x3be", + "0x0", + "0x462" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -162771,17 +146152,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22928, @@ -162790,43 +146161,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000462", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x0", + "0x3be", + "0x462", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -162867,17 +146238,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22929, @@ -162886,43 +146247,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000462", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x0", + "0x3be", + "0x462", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -162963,17 +146324,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22930, @@ -162982,42 +146333,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000462" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x0", + "0x3be", + "0x462" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -163058,17 +146409,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22932, @@ -163077,43 +146418,43 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000462", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x0", + "0x3be", + "0x462", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -163154,17 +146495,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22933, @@ -163173,42 +146504,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000482" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3ef8", + "0x0", + "0x3be", + "0x482" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -163249,17 +146580,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22934, @@ -163268,42 +146589,42 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000003ef8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x482", + "0x0", + "0x3be", + "0x3ef8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -163344,17 +146665,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22935, @@ -163363,47 +146674,47 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x482", + "0x3ef8", + "0x3be", + "0x0" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "00000000000000000000000000000000000000000000000000000000000003be", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000028", "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", @@ -163439,17 +146750,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22936, @@ -163458,41 +146759,41 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003ef8", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x482", + "0x3ef8", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -163533,17 +146834,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22937, @@ -163552,40 +146843,40 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003ef8" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x482", + "0x3ef8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -163626,17 +146917,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16120, @@ -163645,39 +146926,39 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x482" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -163718,17 +146999,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16121, @@ -163737,39 +147008,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000482" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x3229", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x482" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -163810,17 +147081,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16122, @@ -163829,39 +147090,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003229" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x3229" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -163902,17 +147163,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16123, @@ -163921,39 +147172,39 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x3229", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -163994,17 +147245,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16124, @@ -164013,38 +147254,38 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x3229", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -164085,17 +147326,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16125, @@ -164104,37 +147335,37 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x3229", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -164175,17 +147406,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16126, @@ -164194,36 +147415,36 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003be" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x3229", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -164264,17 +147485,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16127, @@ -164283,35 +147494,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x3229", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -164352,17 +147563,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16128, @@ -164371,34 +147572,34 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x3229", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -164439,17 +147640,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16129, @@ -164458,33 +147649,33 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000003229" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x3229" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -164525,17 +147716,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12841, @@ -164544,32 +147725,32 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -164610,17 +147791,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12842, @@ -164629,32 +147800,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -164695,17 +147866,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12844, @@ -164714,33 +147875,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -164781,17 +147942,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12846, @@ -164800,34 +147951,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -164868,17 +148019,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12847, @@ -164887,34 +148028,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -164955,17 +148096,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12848, @@ -164974,35 +148105,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -165043,17 +148174,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12849, @@ -165062,36 +148183,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000482" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0x3de", + "0x482" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -165132,17 +148253,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12850, @@ -165151,35 +148262,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -165220,17 +148331,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12851, @@ -165239,36 +148340,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -165309,17 +148410,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12853, @@ -165328,37 +148419,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -165399,17 +148490,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12854, @@ -165418,38 +148499,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -165490,17 +148571,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12855, @@ -165509,39 +148580,39 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -165582,17 +148653,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12856, @@ -165601,39 +148662,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002c1d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x2c1d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -165674,17 +148735,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12857, @@ -165693,39 +148744,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -165766,17 +148817,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12858, @@ -165785,40 +148826,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -165859,17 +148900,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12859, @@ -165878,40 +148909,40 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -165952,17 +148983,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12862, @@ -165971,41 +148992,41 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003243" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0", + "0x1", + "0x3243" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -166046,17 +149067,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12867, @@ -166065,39 +149076,39 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -166138,17 +149149,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12868, @@ -166157,39 +149158,39 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -166230,17 +149231,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12869, @@ -166249,38 +149240,38 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -166321,17 +149312,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 12870, @@ -166340,39 +149321,39 @@ export const trace: any = JSON.parse(` "gasCost": 92122, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000016d8e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x3de", + "0xa4", + "0x3de", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x16d8e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -166413,17 +149394,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 0, @@ -166432,18 +149403,7 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 2, @@ -166452,20 +149412,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" + "0x80" ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 4, @@ -166474,25 +149423,10 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x80", + "0x40" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 5, @@ -166506,17 +149440,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 6, @@ -166525,24 +149449,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 7, @@ -166551,25 +149465,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 8, @@ -166578,25 +149482,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 11, @@ -166605,26 +149499,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" + "0x0", + "0x1", + "0x10" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 16, @@ -166633,24 +149517,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 17, @@ -166659,24 +149533,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 18, @@ -166690,17 +149554,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 20, @@ -166709,24 +149563,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 21, @@ -166735,25 +149579,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 22, @@ -166762,24 +149596,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 25, @@ -166788,25 +149612,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001b9" + "0x0", + "0x1b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 26, @@ -166820,17 +149634,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 28, @@ -166839,24 +149643,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 29, @@ -166865,24 +149659,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "022c0d9f00000000000000000000000000000000000000000000000000000000" + "0x22c0d9f00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 31, @@ -166891,25 +149675,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "022c0d9f00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f00000000000000000000000000000000000000000000000000000000", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 32, @@ -166918,24 +149692,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 33, @@ -166944,25 +149708,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f", + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 38, @@ -166971,26 +149725,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "000000000000000000000000000000000000000000000000000000006a627842" + "0x22c0d9f", + "0x22c0d9f", + "0x6a627842" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 39, @@ -166999,25 +149743,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 42, @@ -167026,26 +149760,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000f9" + "0x22c0d9f", + "0x1", + "0xf9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 249, @@ -167054,24 +149778,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 250, @@ -167080,24 +149794,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 251, @@ -167106,25 +149810,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f", + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 256, @@ -167133,26 +149827,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000023b872dd" + "0x22c0d9f", + "0x22c0d9f", + "0x23b872dd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 257, @@ -167161,25 +149845,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 260, @@ -167188,26 +149862,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000166" + "0x22c0d9f", + "0x1", + "0x166" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 358, @@ -167216,24 +149880,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 359, @@ -167242,24 +149896,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 360, @@ -167268,25 +149912,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f", + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 365, @@ -167295,26 +149929,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000095ea7b3" + "0x22c0d9f", + "0x22c0d9f", + "0x95ea7b3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 366, @@ -167323,25 +149947,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 369, @@ -167350,26 +149964,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000197" + "0x22c0d9f", + "0x1", + "0x197" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 407, @@ -167378,24 +149982,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 408, @@ -167404,24 +149998,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 409, @@ -167430,25 +150014,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f", + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 414, @@ -167457,26 +150031,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f", + "0x22c0d9f", + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 415, @@ -167485,25 +150049,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 418, @@ -167512,26 +150066,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001be" + "0x22c0d9f", + "0x1", + "0x1be" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 446, @@ -167540,24 +150084,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 447, @@ -167566,24 +150100,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 450, @@ -167592,25 +150116,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257" + "0x22c0d9f", + "0x257" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 452, @@ -167619,26 +150133,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 453, @@ -167647,27 +150151,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 454, @@ -167676,28 +150170,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x22c0d9f", + "0x257", + "0x4", + "0x4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 455, @@ -167706,27 +150190,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x22c0d9f", + "0x257", + "0x4", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 457, @@ -167735,28 +150209,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x4", + "0xa0", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 458, @@ -167765,29 +150229,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x22c0d9f", + "0x257", + "0x4", + "0xa0", + "0x80", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 459, @@ -167796,28 +150250,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x4", + "0xa0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 460, @@ -167826,28 +150270,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x4", + "0xa0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 463, @@ -167856,29 +150290,19 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001d4" + "0x22c0d9f", + "0x257", + "0x4", + "0xa0", + "0x1", + "0x1d4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 468, @@ -167887,27 +150311,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x22c0d9f", + "0x257", + "0x4", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 469, @@ -167916,27 +150330,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x22c0d9f", + "0x257", + "0x4", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 470, @@ -167945,28 +150349,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x4", + "0xa0", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 471, @@ -167975,28 +150369,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x4", + "0xa0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 472, @@ -168005,28 +150389,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0xa0", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 474, @@ -168035,29 +150409,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0xa0", + "0x4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 475, @@ -168066,30 +150430,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0xa0", + "0x4", + "0x20", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 476, @@ -168098,29 +150452,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0xa0", + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 477, @@ -168129,29 +150473,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x22c0d9f", + "0x257", + "0x0", + "0xa0", + "0x4", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 478, @@ -168160,29 +150494,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x4", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 499, @@ -168191,30 +150515,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x4", + "0xa0", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 501, @@ -168223,31 +150537,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x4", + "0xa0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 502, @@ -168256,32 +150560,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x4", + "0xa0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x40", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 503, @@ -168290,31 +150584,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x4", + "0xa0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 504, @@ -168323,31 +150607,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x4", + "0xa0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 505, @@ -168356,30 +150630,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x4", + "0xa0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 506, @@ -168388,30 +150652,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa0", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 507, @@ -168420,30 +150674,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x4", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 508, @@ -168452,31 +150696,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x4", + "0xa0", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 509, @@ -168485,30 +150719,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 510, @@ -168517,30 +150741,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 512, @@ -168549,31 +150763,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 513, @@ -168582,32 +150786,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x80", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 514, @@ -168616,31 +150810,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 516, @@ -168649,32 +150833,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 517, @@ -168683,33 +150857,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x60", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 518, @@ -168718,32 +150882,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 519, @@ -168752,32 +150906,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 525, @@ -168786,33 +150930,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000100000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x80", + "0x100000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 526, @@ -168821,34 +150955,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000100000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x80", + "0x100000000", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 527, @@ -168857,33 +150981,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 528, @@ -168892,33 +151006,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 531, @@ -168927,34 +151031,24 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000218" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x80", + "0x1", + "0x218" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 536, @@ -168963,32 +151057,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 537, @@ -168997,32 +151081,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 538, @@ -169031,33 +151105,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x80", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 539, @@ -169066,32 +151130,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 540, @@ -169100,33 +151154,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x84", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 542, @@ -169135,34 +151179,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x84", + "0xa4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 543, @@ -169171,35 +151205,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x84", + "0xa4", + "0x20", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 544, @@ -169208,34 +151232,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x84", + "0xa4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 545, @@ -169244,33 +151258,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x84", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 546, @@ -169279,33 +151283,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x84", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 549, @@ -169314,34 +151308,24 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000022a" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x84", + "0x1", + "0x22a" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 554, @@ -169350,32 +151334,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 555, @@ -169384,32 +151358,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 556, @@ -169418,33 +151382,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x84", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 557, @@ -169453,33 +151407,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x84", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 558, @@ -169488,33 +151432,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x0", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 560, @@ -169523,34 +151457,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x0", + "0x84", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 561, @@ -169559,33 +151483,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x84", + "0x0", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 562, @@ -169594,33 +151508,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 563, @@ -169629,34 +151533,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 565, @@ -169665,35 +151559,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0xa4", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 566, @@ -169702,36 +151586,26 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0xa4", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 567, @@ -169740,35 +151614,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 568, @@ -169777,36 +151641,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0xa4", + "0x0", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 569, @@ -169815,35 +151669,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0xa4", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 570, @@ -169852,34 +151696,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 576, @@ -169888,35 +151722,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000100000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0x0", + "0x100000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 577, @@ -169925,36 +151749,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000100000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0x0", + "0x100000000", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 578, @@ -169963,35 +151777,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 579, @@ -170000,34 +151804,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 580, @@ -170036,34 +151830,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 583, @@ -170072,35 +151856,25 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000024c" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84", + "0x1", + "0x24c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 588, @@ -170109,33 +151883,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 589, @@ -170144,33 +151908,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0", + "0x84" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 590, @@ -170179,32 +151933,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 591, @@ -170213,32 +151957,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x0", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 592, @@ -170247,32 +151981,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x0", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 593, @@ -170281,31 +152005,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 594, @@ -170314,31 +152028,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 595, @@ -170347,30 +152051,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 598, @@ -170379,31 +152073,21 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000683" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x683" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1667, @@ -170412,30 +152096,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1668, @@ -170444,30 +152118,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 4800 }, { "pc": 1670, @@ -170476,14 +152140,14 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000c" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0xc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -170493,7 +152157,8 @@ export const trace: any = JSON.parse(` "storage": { "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + }, + "refund": 4800 }, { "pc": 1671, @@ -170502,24 +152167,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 4800 }, { "pc": 1673, @@ -170528,25 +152190,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 4800 }, { "pc": 1674, @@ -170555,24 +152214,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 4800 }, { "pc": 1677, @@ -170581,25 +152237,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000006f4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x1", + "0x6f4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 4800 }, { "pc": 1780, @@ -170608,23 +152261,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 4800 }, { "pc": 1781, @@ -170633,23 +152283,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 4800 }, { "pc": 1783, @@ -170658,24 +152305,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 4800 }, { "pc": 1785, @@ -170684,15 +152328,15 @@ export const trace: any = JSON.parse(` "gasCost": 2900, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000c" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0xc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -170702,7 +152346,8 @@ export const trace: any = JSON.parse(` "storage": { "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 1786, @@ -170711,23 +152356,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1787, @@ -170736,24 +152378,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1788, @@ -170762,24 +152401,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1789, @@ -170788,24 +152424,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1790, @@ -170814,25 +152447,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1793, @@ -170841,26 +152471,23 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000707" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x707" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1794, @@ -170869,24 +152496,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1795, @@ -170895,23 +152519,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1797, @@ -170920,24 +152541,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1798, @@ -170946,25 +152564,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1799, @@ -170973,24 +152588,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1800, @@ -170999,24 +152611,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1803, @@ -171025,25 +152634,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000075c" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x1", + "0x75c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1884, @@ -171052,23 +152658,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1885, @@ -171077,23 +152680,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1887, @@ -171102,24 +152702,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1888, @@ -171128,25 +152725,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1891, @@ -171155,26 +152749,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x767" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1894, @@ -171183,27 +152774,24 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000000000000000000000000000000d90" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x767", + "0xd90" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3472, @@ -171212,26 +152800,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x767" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3473, @@ -171240,26 +152825,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x767" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3475, @@ -171268,17 +152850,17 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000000000000000000000000000000008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x767", + "0x8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -171288,7 +152870,8 @@ export const trace: any = JSON.parse(` "storage": { "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 3476, @@ -171297,27 +152880,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x767", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3491, @@ -171326,28 +152906,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x767", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3492, @@ -171356,29 +152933,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x767", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3493, @@ -171387,30 +152961,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x767", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffff", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3494, @@ -171419,29 +152990,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x767", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3495, @@ -171450,29 +153018,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000767" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x767" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3511, @@ -171481,30 +153046,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000010000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x767", + "0x10000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3512, @@ -171513,31 +153075,28 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x767", + "0x10000000000000000000000000000", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3513, @@ -171546,30 +153105,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000767", - "000000000000000000000000000062dd06b903d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x767", + "0x62dd06b903d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3514, @@ -171578,30 +153134,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000062dd06b903d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x62dd06b903d12f2d086f66d08e020a261097", + "0x767" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3515, @@ -171610,30 +153163,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000767", - "000000000000000000000000000062dd06b903d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0x767", + "0x62dd06b903d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3516, @@ -171642,29 +153192,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000767", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0x767", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3517, @@ -171673,29 +153220,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x767", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3547, @@ -171704,30 +153248,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000100000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x767", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0x100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3548, @@ -171736,30 +153277,27 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000100000000000000000000000000000000000000000000000000000000", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x767", + "0x100000000000000000000000000000000000000000000000000000000", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3549, @@ -171768,29 +153306,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000000000000000000000000062dd06b9" - ], - "memory": [ + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x767", + "0x62dd06b9" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3554, @@ -171799,30 +153334,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x767", + "0x62dd06b9", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3555, @@ -171831,29 +153363,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000767", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x767", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3556, @@ -171862,29 +153391,26 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000000000767" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9", + "0x767" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1895, @@ -171893,28 +153419,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1896, @@ -171923,28 +153446,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1897, @@ -171953,27 +153473,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1898, @@ -171982,27 +153499,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1899, @@ -172011,26 +153525,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1900, @@ -172039,26 +153550,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1901, @@ -172067,25 +153575,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1902, @@ -172094,26 +153599,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1917, @@ -172122,27 +153624,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1918, @@ -172151,26 +153650,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1919, @@ -172179,27 +153675,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1920, @@ -172208,26 +153701,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1921, @@ -172236,27 +153726,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1922, @@ -172265,27 +153752,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1925, @@ -172294,28 +153778,25 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000079a" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1", + "0x0", + "0x79a" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1926, @@ -172324,26 +153805,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1927, @@ -172352,25 +153830,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1928, @@ -172379,26 +153854,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1943, @@ -172407,27 +153879,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1944, @@ -172436,26 +153905,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1945, @@ -172464,27 +153930,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1946, @@ -172493,26 +153956,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1947, @@ -172521,26 +153981,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1950, @@ -172549,27 +154006,24 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000007ef" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1", + "0x7ef" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2031, @@ -172578,25 +154032,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2032, @@ -172605,25 +154056,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2034, @@ -172632,16 +154080,16 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000006" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -172652,7 +154100,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 2035, @@ -172661,27 +154110,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2037, @@ -172690,17 +154135,17 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x7" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -172712,7 +154157,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 2038, @@ -172721,29 +154167,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2040, @@ -172752,30 +154193,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2041, @@ -172784,30 +154220,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2042, @@ -172816,31 +154247,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2043, @@ -172849,31 +154275,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2064, @@ -172882,32 +154303,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2065, @@ -172916,32 +154332,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2066, @@ -172950,33 +154361,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2067, @@ -172985,32 +154391,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2068, @@ -173019,32 +154420,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2069, @@ -173053,32 +154449,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2070, @@ -173087,33 +154478,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2071, @@ -173122,32 +154508,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2072, @@ -173156,32 +154537,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2073, @@ -173190,33 +154566,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2074, @@ -173225,32 +154596,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2075, @@ -173259,33 +154625,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2076, @@ -173294,32 +154655,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2077, @@ -173328,33 +154684,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2078, @@ -173363,33 +154714,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2079, @@ -173398,33 +154744,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2082, @@ -173433,34 +154774,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000854" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1", + "0x0", + "0x854" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2083, @@ -173469,32 +154805,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2084, @@ -173503,31 +154834,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2085, @@ -173536,32 +154862,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2106, @@ -173570,33 +154891,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2107, @@ -173605,32 +154921,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2108, @@ -173639,33 +154950,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2129, @@ -173674,34 +154980,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2130, @@ -173710,33 +155011,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2131, @@ -173745,32 +155041,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2132, @@ -173779,32 +155070,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2133, @@ -173813,32 +155099,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2136, @@ -173847,33 +155128,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008bf" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1", + "0x8bf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2239, @@ -173882,31 +155158,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2240, @@ -173915,31 +155186,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2241, @@ -173948,32 +155214,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2242, @@ -173982,32 +155243,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2245, @@ -174016,33 +155272,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008d0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1", + "0x8d0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2256, @@ -174051,31 +155302,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2257, @@ -174084,31 +155330,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2258, @@ -174117,32 +155358,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2259, @@ -174151,32 +155387,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2262, @@ -174185,33 +155416,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000008e1" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x8e1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2263, @@ -174220,31 +155446,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2266, @@ -174253,32 +155474,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2267, @@ -174287,33 +155503,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2268, @@ -174322,34 +155533,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2269, @@ -174358,35 +155564,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2272, @@ -174395,36 +155596,31 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000001fdb" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1fdb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8155, @@ -174433,35 +155629,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8156, @@ -174470,35 +155661,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8158, @@ -174507,36 +155693,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8159, @@ -174545,37 +155726,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8160, @@ -174584,37 +155760,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8161, @@ -174623,38 +155794,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8162, @@ -174663,39 +155829,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x80", + "0x80", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8163, @@ -174704,38 +155865,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x80", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8164, @@ -174744,39 +155900,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x80", + "0xc0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8165, @@ -174785,37 +155936,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8167, @@ -174824,38 +155970,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000019" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x80", + "0x19" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8168, @@ -174864,41 +156005,34 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000019", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x80", + "0x19", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "00000000000000000000000000000000000000000000000000000000000000c0" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8169, @@ -174907,25 +156041,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -174934,12 +156068,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000019" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8202, @@ -174948,26 +156077,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "7472616e7366657228616464726573732c75696e743235362900000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x80", + "0x7472616e7366657228616464726573732c75696e743235362900000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -174976,12 +156105,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000019" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8204, @@ -174990,27 +156114,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x80", + "0x7472616e7366657228616464726573732c75696e743235362900000000000000", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175019,12 +156143,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000019" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8205, @@ -175033,27 +156152,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0x7472616e7366657228616464726573732c75696e743235362900000000000000", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175062,12 +156181,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000019" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8206, @@ -175076,28 +156190,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0x7472616e7366657228616464726573732c75696e743235362900000000000000", + "0x80", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175106,12 +156220,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000019" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8207, @@ -175120,42 +156229,36 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0x7472616e7366657228616464726573732c75696e743235362900000000000000", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000019", - "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000019" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8208, @@ -175164,25 +156267,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175192,12 +156295,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000019", "7472616e7366657228616464726573732c75696e743235362900000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8209, @@ -175206,26 +156304,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175235,12 +156333,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000019", "7472616e7366657228616464726573732c75696e743235362900000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8210, @@ -175249,26 +156342,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175278,12 +156371,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000019", "7472616e7366657228616464726573732c75696e743235362900000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8231, @@ -175292,27 +156380,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175322,12 +156410,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000019", "7472616e7366657228616464726573732c75696e743235362900000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8232, @@ -175336,28 +156419,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175367,12 +156450,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000019", "7472616e7366657228616464726573732c75696e743235362900000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8233, @@ -175381,29 +156459,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175413,12 +156491,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000019", "7472616e7366657228616464726573732c75696e743235362900000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8234, @@ -175427,28 +156500,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175458,12 +156531,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000019", "7472616e7366657228616464726573732c75696e743235362900000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8236, @@ -175472,29 +156540,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175504,12 +156572,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000019", "7472616e7366657228616464726573732c75696e743235362900000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8237, @@ -175518,30 +156581,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x24", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175551,12 +156614,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000019", "7472616e7366657228616464726573732c75696e743235362900000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8238, @@ -175565,29 +156623,29 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175595,17 +156653,9 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000019", - "7472616e7366657228616464726573732c75696e743235362900000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "7472616e7366657228616464726573732c75696e743235362900000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8239, @@ -175614,27 +156664,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175647,12 +156697,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f200000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8241, @@ -175661,28 +156706,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175695,12 +156740,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f200000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8242, @@ -175709,29 +156749,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175744,12 +156784,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f200000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8243, @@ -175758,30 +156793,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44", + "0x44", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175794,12 +156829,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f200000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8244, @@ -175808,29 +156838,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000104" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44", + "0x104" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175843,12 +156873,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f200000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8245, @@ -175857,30 +156882,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000104", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44", + "0x104", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175893,12 +156918,7 @@ export const trace: any = JSON.parse(` "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f200000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8246, @@ -175907,30 +156927,30 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000104" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44", + "0x34ada3bd6a2edc0ba986cab", + "0x104" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175941,15 +156961,9 @@ export const trace: any = JSON.parse(` "7472616e7366657228616464726573732c75696e743235362900000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "f0f998f200000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "f0f998f200000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8247, @@ -175958,28 +156972,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -175993,12 +157007,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8248, @@ -176007,29 +157016,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176043,12 +157052,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8249, @@ -176057,29 +157061,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176093,12 +157097,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8250, @@ -176107,30 +157106,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44", + "0xc0", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176144,12 +157143,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8251, @@ -176158,31 +157152,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44", + "0xc0", + "0xc0", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176196,12 +157190,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8252, @@ -176210,30 +157199,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44", + "0xc0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176247,12 +157236,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8253, @@ -176261,30 +157245,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44", + "0x0", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176298,12 +157282,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8254, @@ -176312,30 +157291,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x0", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176349,12 +157328,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8255, @@ -176363,29 +157337,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176399,12 +157373,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8256, @@ -176413,30 +157382,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x44", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176450,12 +157419,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8257, @@ -176464,28 +157428,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176499,12 +157463,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8259, @@ -176513,29 +157472,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176549,12 +157508,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8260, @@ -176563,29 +157517,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176599,12 +157553,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8261, @@ -176613,29 +157562,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x64", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176649,12 +157598,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8262, @@ -176663,28 +157607,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176698,12 +157642,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8263, @@ -176712,29 +157651,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x124", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176748,12 +157687,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8264, @@ -176762,27 +157696,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x20", + "0xc0", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176796,12 +157730,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8265, @@ -176810,27 +157739,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176844,12 +157773,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8266, @@ -176858,28 +157782,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x20", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176893,12 +157817,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8267, @@ -176907,27 +157826,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176941,12 +157860,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8268, @@ -176955,28 +157869,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0xe0", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -176990,12 +157904,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8269, @@ -177004,28 +157913,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0xe0", + "0xccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177039,12 +157948,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8298, @@ -177053,29 +157957,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0xe0", + "0xccde3781a1b463aab7c8480ccfa8daec", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177089,12 +157993,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8299, @@ -177103,28 +158002,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0xe0", + "0xccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177138,12 +158037,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8332, @@ -177152,29 +158046,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "a9059cbb00000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0xe0", + "0xccde3781a1b463aab7c8480ccfa8daec", + "0xa9059cbb00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177188,12 +158082,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8333, @@ -177202,28 +158091,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0xe0", + "0xa9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177237,12 +158126,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8334, @@ -177251,29 +158135,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0xe0", + "0xa9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177287,12 +158171,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8335, @@ -177301,27 +158180,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177335,12 +158214,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8336, @@ -177349,27 +158223,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xe0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177383,12 +158257,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8337, @@ -177397,27 +158266,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xe0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177431,12 +158300,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8338, @@ -177445,28 +158309,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xe0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x124", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177480,12 +158344,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8339, @@ -177494,28 +158353,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xe0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x124", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177529,12 +158388,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8341, @@ -177543,29 +158397,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xe0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x124", + "0x44", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177579,12 +158433,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8342, @@ -177593,29 +158442,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x124", + "0x44", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177629,12 +158478,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8344, @@ -177643,30 +158487,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc0", + "0x124", + "0x44", + "0xe0", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177680,12 +158524,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8345, @@ -177694,30 +158533,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xc0", + "0x124", + "0x44", + "0xe0", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177731,12 +158570,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8346, @@ -177745,31 +158579,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xc0", + "0x124", + "0x44", + "0xe0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177783,12 +158617,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8347, @@ -177797,30 +158626,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xc0", + "0x124", + "0x44", + "0xe0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177834,12 +158663,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8348, @@ -177848,30 +158672,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x124", + "0x44", + "0xe0", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177885,12 +158709,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8349, @@ -177899,30 +158718,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x44", + "0xe0", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177936,12 +158755,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8350, @@ -177950,30 +158764,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0xe0", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -177987,12 +158801,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8351, @@ -178001,31 +158810,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0xe0", + "0x44", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178039,12 +158848,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8352, @@ -178053,31 +158857,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0x44", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178091,12 +158895,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8353, @@ -178105,31 +158904,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178143,12 +158942,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8354, @@ -178157,32 +158951,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178196,12 +158990,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8355, @@ -178210,33 +158999,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178250,12 +159039,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8356, @@ -178264,34 +159048,34 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178305,12 +159089,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8357, @@ -178319,34 +159098,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178360,12 +159139,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8359, @@ -178374,35 +159148,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xe0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178416,12 +159190,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8360, @@ -178430,36 +159199,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xe0", + "0x20", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178473,12 +159242,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8361, @@ -178487,35 +159251,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xe0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178529,12 +159293,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8364, @@ -178543,36 +159302,36 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000020e1" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xe0", + "0x0", + "0x20e1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178586,12 +159345,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8365, @@ -178600,34 +159354,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178641,12 +159395,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8366, @@ -178655,35 +159404,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xe0", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178697,12 +159446,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8367, @@ -178711,35 +159455,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xe0", + "0xa9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178753,12 +159497,7 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8368, @@ -178767,36 +159506,36 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xe0", + "0xa9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178808,15 +159547,9 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000044", "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8369, @@ -178825,34 +159558,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178867,12 +159600,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8402, @@ -178881,35 +159609,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xe0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178924,12 +159652,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8403, @@ -178938,35 +159661,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x44", + "0x124", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -178981,12 +159704,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8404, @@ -178995,35 +159713,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000124", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0xe0", + "0x124", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179038,12 +159756,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8405, @@ -179052,34 +159765,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0xe0", + "0x124", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179094,12 +159807,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8406, @@ -179108,34 +159816,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x124", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179150,12 +159858,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8408, @@ -179164,35 +159867,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x124", + "0xe0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179207,12 +159910,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8409, @@ -179221,35 +159919,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x20", + "0xe0", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179264,12 +159962,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8410, @@ -179278,41 +159971,41 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x20", + "0xe0", + "0x124", + "0x20" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", + "0000000000000000000000000000000000000000000000000000000000000124", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000019", "7472616e7366657228616464726573732c75696e743235362900000000000000", @@ -179322,12 +160015,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8411, @@ -179336,35 +160024,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000144" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x20", + "0xe0", + "0x144" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179379,12 +160067,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8412, @@ -179393,35 +160076,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0xe0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179436,12 +160119,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8413, @@ -179450,34 +160128,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179492,12 +160170,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8416, @@ -179506,35 +160179,35 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000020a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100", + "0x20a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179549,12 +160222,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8356, @@ -179563,34 +160231,34 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179605,12 +160273,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8357, @@ -179619,34 +160282,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179661,12 +160324,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8359, @@ -179675,35 +160333,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179718,12 +160376,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8360, @@ -179732,36 +160385,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100", + "0x20", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179776,12 +160429,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8361, @@ -179790,35 +160438,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179833,12 +160481,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8364, @@ -179847,36 +160490,36 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000020e1" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100", + "0x0", + "0x20e1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179891,12 +160534,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8365, @@ -179905,34 +160543,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -179947,12 +160585,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8366, @@ -179961,35 +160594,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180004,12 +160637,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8367, @@ -180018,35 +160646,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100", + "0xf0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180061,12 +160689,7 @@ export const trace: any = JSON.parse(` "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8368, @@ -180075,36 +160698,36 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", - "0000000000000000000000000000000000000000000000000000000000000144" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100", + "0xf0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", + "0x144" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180117,15 +160740,9 @@ export const trace: any = JSON.parse(` "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", - "cfa8daec00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "cfa8daec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8369, @@ -180134,34 +160751,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180177,12 +160794,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8402, @@ -180191,35 +160803,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0x100", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180235,12 +160847,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8403, @@ -180249,35 +160856,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000144", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x24", + "0x144", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180293,12 +160900,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8404, @@ -180307,35 +160909,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000144", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x100", + "0x144", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180351,12 +160953,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8405, @@ -180365,34 +160962,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x100", + "0x144", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180408,12 +161005,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8406, @@ -180422,34 +161014,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x144", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180465,12 +161057,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8408, @@ -180479,35 +161066,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x144", + "0x100", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180523,12 +161110,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8409, @@ -180537,35 +161119,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000144" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x20", + "0x100", + "0x144" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180581,12 +161163,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8410, @@ -180595,36 +161172,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x20", + "0x100", + "0x144", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180640,12 +161217,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8411, @@ -180654,35 +161226,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x20", + "0x100", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180698,12 +161270,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8412, @@ -180712,35 +161279,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x100", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180756,12 +161323,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8413, @@ -180770,34 +161332,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180813,12 +161375,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8416, @@ -180827,35 +161384,35 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000000000000000000000000000000000000000000000000000000020a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0x20a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180871,12 +161428,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8356, @@ -180885,34 +161437,34 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180928,12 +161480,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8357, @@ -180942,34 +161489,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -180985,12 +161532,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8359, @@ -180999,35 +161541,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181043,12 +161585,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8360, @@ -181057,36 +161594,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0x20", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181102,12 +161639,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8361, @@ -181116,35 +161648,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181160,12 +161692,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8364, @@ -181174,36 +161701,36 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000020e1" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0x1", + "0x20e1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181219,12 +161746,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8417, @@ -181233,34 +161755,34 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181276,12 +161798,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8418, @@ -181290,34 +161807,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181333,12 +161850,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8420, @@ -181347,35 +161859,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181391,12 +161903,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8421, @@ -181405,36 +161912,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0x1", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181450,12 +161957,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8423, @@ -181464,37 +161966,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0x1", + "0x4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181510,12 +162012,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8424, @@ -181524,36 +162021,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000001c" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0x1", + "0x1c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181569,12 +162066,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8427, @@ -181583,37 +162075,37 @@ export const trace: any = JSON.parse(` "gasCost": 60, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000001c", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0x1", + "0x1c", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181629,12 +162121,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8428, @@ -181643,36 +162130,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000100000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0x1", + "0x100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181688,12 +162175,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8429, @@ -181702,35 +162184,35 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181746,12 +162228,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8430, @@ -181760,36 +162237,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181805,12 +162282,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8431, @@ -181819,38 +162291,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffffffff00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xffffffff00000000000000000000000000000000000000000000000000000000" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000124", @@ -181864,12 +162336,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8432, @@ -181878,37 +162345,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffffffff00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xffffffff00000000000000000000000000000000000000000000000000000000", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181924,12 +162391,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8433, @@ -181938,37 +162400,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffffffff00000000000000000000000000000000000000000000000000000000", - "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xffffffff00000000000000000000000000000000000000000000000000000000", + "0xba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -181984,12 +162446,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8434, @@ -181998,36 +162455,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xba986cab00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182043,12 +162500,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8435, @@ -182057,37 +162509,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xba986cab00000000000000000000000000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182103,12 +162555,7 @@ export const trace: any = JSON.parse(` "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8436, @@ -182117,38 +162564,38 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xba986cab00000000000000000000000000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182162,15 +162609,9 @@ export const trace: any = JSON.parse(` "f0f998f20000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986caba9059cbb000000000000000000000000ccde3781a1b463aab7c8480c", "cfa8daecf0f998f20000000000000000000000000000000000000000034ada3b", - "d6a2edc000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "d6a2edc000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8437, @@ -182179,38 +162620,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xba986cab00000000000000000000000000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182227,12 +162668,7 @@ export const trace: any = JSON.parse(` "d6a2edc000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8438, @@ -182241,37 +162677,37 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xba986cab00000000000000000000000000000000000000000000000000000000", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182288,12 +162724,7 @@ export const trace: any = JSON.parse(` "d6a2edc000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8439, @@ -182302,38 +162733,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xba986cab00000000000000000000000000000000000000000000000000000000", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182350,12 +162781,7 @@ export const trace: any = JSON.parse(` "d6a2edc000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8440, @@ -182364,39 +162790,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ba986cab00000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xba986cab00000000000000000000000000000000000000000000000000000000", + "0x0", + "0x0", + "0xba986cab00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182413,12 +162839,7 @@ export const trace: any = JSON.parse(` "d6a2edc000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8441, @@ -182427,38 +162848,38 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ba986cab00000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xba986cab00000000000000000000000000000000000000000000000000000000", + "0x0", + "0xba986cab00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182475,12 +162896,7 @@ export const trace: any = JSON.parse(` "d6a2edc000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8442, @@ -182489,39 +162905,39 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xba986cab00000000000000000000000000000000000000000000000000000000", + "0x0", + "0xba986cab00000000000000000000000000000000000000000000000000000000", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182538,12 +162954,7 @@ export const trace: any = JSON.parse(` "d6a2edc000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8443, @@ -182552,37 +162963,37 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xba986cab00000000000000000000000000000000000000000000000000000000", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182599,12 +163010,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8444, @@ -182613,36 +163019,36 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ba986cab00000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xba986cab00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182659,12 +163065,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8445, @@ -182673,35 +163074,35 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182718,12 +163119,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8446, @@ -182732,34 +163128,34 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182776,12 +163172,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8447, @@ -182790,33 +163181,33 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182833,12 +163224,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8448, @@ -182847,32 +163233,32 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182889,12 +163275,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8449, @@ -182903,31 +163284,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0xe0", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182944,12 +163325,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8450, @@ -182958,31 +163334,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0x44", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -182999,12 +163375,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8451, @@ -183013,30 +163384,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x124", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183053,12 +163424,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8452, @@ -183067,29 +163433,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000168" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc0", + "0x124", + "0x168" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183106,12 +163472,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8453, @@ -183120,29 +163481,29 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000124", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x124", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183159,12 +163520,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8454, @@ -183173,28 +163529,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183211,12 +163567,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8455, @@ -183225,27 +163576,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183262,12 +163613,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8457, @@ -183276,28 +163622,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183314,12 +163660,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8459, @@ -183328,29 +163669,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183367,12 +163708,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8460, @@ -183381,29 +163717,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x0", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183420,12 +163756,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8461, @@ -183434,30 +163765,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x0", + "0x124", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183474,12 +163805,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8462, @@ -183488,31 +163814,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000168" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x0", + "0x124", + "0x124", + "0x168" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183529,12 +163855,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8463, @@ -183543,30 +163864,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x0", + "0x124", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183583,12 +163904,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8464, @@ -183597,31 +163913,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x0", + "0x124", + "0x44", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183638,12 +163954,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8466, @@ -183652,32 +163963,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x0", + "0x124", + "0x44", + "0x124", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183694,12 +164005,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8467, @@ -183708,33 +164014,33 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x0", + "0x124", + "0x44", + "0x124", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183751,12 +164057,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8468, @@ -183765,34 +164066,34 @@ export const trace: any = JSON.parse(` "gasCost": 79949, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000013d40" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x0", + "0x124", + "0x44", + "0x124", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x13d40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -183809,12 +164110,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 0, @@ -183823,13 +164119,7 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2, @@ -183838,15 +164128,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" + "0x80" ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 4, @@ -183855,20 +164139,10 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x80", + "0x40" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 5, @@ -183882,12 +164156,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 6, @@ -183896,19 +164165,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 7, @@ -183917,20 +164181,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8, @@ -183939,20 +164198,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 11, @@ -183961,21 +164215,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" + "0x0", + "0x1", + "0x10" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 16, @@ -183984,19 +164233,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 17, @@ -184005,19 +164249,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 18, @@ -184031,12 +164270,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 20, @@ -184045,19 +164279,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 21, @@ -184066,20 +164295,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044" + "0x4", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 22, @@ -184088,19 +164312,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 25, @@ -184109,20 +164328,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a9" + "0x0", + "0xa9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 26, @@ -184136,12 +164350,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 28, @@ -184150,19 +164359,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 29, @@ -184171,19 +164375,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0xa9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 31, @@ -184192,20 +164391,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "a9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0xa9059cbb000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 32, @@ -184214,19 +164408,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 33, @@ -184235,20 +164424,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb", + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 38, @@ -184257,21 +164441,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000039509351" + "0xa9059cbb", + "0xa9059cbb", + "0x39509351" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 39, @@ -184280,20 +164459,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 42, @@ -184302,21 +164476,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000071" + "0xa9059cbb", + "0x0", + "0x71" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 43, @@ -184325,19 +164494,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 44, @@ -184346,20 +164510,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb", + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 49, @@ -184368,21 +164527,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000039509351" + "0xa9059cbb", + "0xa9059cbb", + "0x39509351" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 50, @@ -184391,20 +164545,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 53, @@ -184413,21 +164562,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000145" + "0xa9059cbb", + "0x0", + "0x145" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 54, @@ -184436,19 +164580,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 55, @@ -184457,20 +164596,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb", + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 60, @@ -184479,21 +164613,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0xa9059cbb", + "0xa9059cbb", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 61, @@ -184502,20 +164631,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 64, @@ -184524,21 +164648,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000158" + "0xa9059cbb", + "0x0", + "0x158" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 65, @@ -184547,19 +164666,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 66, @@ -184568,20 +164682,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb", + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 71, @@ -184590,21 +164699,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000095d89b41" + "0xa9059cbb", + "0xa9059cbb", + "0x95d89b41" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 72, @@ -184613,20 +164717,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 75, @@ -184635,21 +164734,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000181" + "0xa9059cbb", + "0x0", + "0x181" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 76, @@ -184658,19 +164752,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 77, @@ -184679,20 +164768,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb", + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 82, @@ -184701,21 +164785,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a457c2d7" + "0xa9059cbb", + "0xa9059cbb", + "0xa457c2d7" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 83, @@ -184724,20 +164803,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 86, @@ -184746,21 +164820,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000189" + "0xa9059cbb", + "0x0", + "0x189" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 87, @@ -184769,19 +164838,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 88, @@ -184790,20 +164854,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb", + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 93, @@ -184812,21 +164871,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb", + "0xa9059cbb", + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 94, @@ -184835,20 +164889,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 97, @@ -184857,21 +164906,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000019c" + "0xa9059cbb", + "0x1", + "0x19c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 412, @@ -184880,19 +164924,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 413, @@ -184901,19 +164940,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb" + "0xa9059cbb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 416, @@ -184922,20 +164956,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df" + "0xa9059cbb", + "0xdf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 419, @@ -184944,21 +164973,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa" + "0xa9059cbb", + "0xdf", + "0x1aa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 420, @@ -184967,22 +164991,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 422, @@ -184991,23 +165010,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 425, @@ -185016,24 +165030,19 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000794" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x794" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1940, @@ -185042,23 +165051,18 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1941, @@ -185067,23 +165071,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1943, @@ -185092,24 +165091,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1944, @@ -185118,25 +165112,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1946, @@ -185145,26 +165134,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1947, @@ -185173,27 +165157,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1948, @@ -185202,28 +165181,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x4", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1949, @@ -185232,27 +165206,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1950, @@ -185261,26 +165230,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1951, @@ -185289,26 +165253,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1954, @@ -185317,27 +165276,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000007a7" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1", + "0x7a7" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1959, @@ -185346,25 +165300,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1960, @@ -185373,25 +165322,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1963, @@ -185400,26 +165344,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1964, @@ -185428,27 +165367,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1967, @@ -185457,28 +165391,23 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000778" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0x778" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1912, @@ -185487,27 +165416,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1913, @@ -185516,27 +165440,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1914, @@ -185545,28 +165464,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1915, @@ -185575,28 +165489,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1917, @@ -185605,29 +165514,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1919, @@ -185636,30 +165540,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1921, @@ -185668,31 +165567,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1922, @@ -185701,30 +165595,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1923, @@ -185733,29 +165622,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1924, @@ -185764,30 +165648,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1925, @@ -185796,29 +165675,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1926, @@ -185827,30 +165701,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1927, @@ -185859,29 +165728,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1930, @@ -185890,30 +165754,25 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000078f" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x78f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1935, @@ -185922,28 +165781,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1936, @@ -185952,28 +165806,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0x7b0", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1937, @@ -185982,28 +165831,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000007b0" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x4", + "0x7b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1938, @@ -186012,28 +165856,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000007b0", - "0000000000000000000000000000000000000000000000000000000000000004" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7b0", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1939, @@ -186042,27 +165881,22 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000007b0" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7b0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1968, @@ -186071,26 +165905,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1969, @@ -186099,26 +165928,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0x1aa", + "0x44", + "0x4", + "0x0", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1970, @@ -186127,26 +165951,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001aa" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1aa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1972, @@ -186155,27 +165974,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000020" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1aa", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1973, @@ -186184,27 +165998,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000004" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x44", + "0x20", + "0x0", + "0x0", + "0x1aa", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1974, @@ -186213,27 +166022,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001aa" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x44", + "0x20", + "0x0", + "0x0", + "0x4", + "0x1aa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1975, @@ -186242,27 +166046,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x44", + "0x1aa", + "0x0", + "0x0", + "0x4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1976, @@ -186271,26 +166070,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x44", + "0x1aa", + "0x0", + "0x0", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1977, @@ -186299,26 +166093,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x44", + "0x1aa", + "0x0", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1978, @@ -186327,26 +166116,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1aa", + "0x0", + "0x0", + "0x44" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1979, @@ -186355,25 +166139,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1aa", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1980, @@ -186382,24 +166161,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000001aa", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1aa", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1981, @@ -186408,23 +166182,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000001aa" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1aa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 426, @@ -186433,22 +166202,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 427, @@ -186457,22 +166221,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 430, @@ -186481,23 +166240,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000423" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x423" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1059, @@ -186506,22 +166260,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1060, @@ -186530,22 +166279,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1062, @@ -186554,23 +166298,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1065, @@ -186579,24 +166318,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1066, @@ -186605,25 +166339,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1067, @@ -186632,26 +166361,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1068, @@ -186660,27 +166384,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1071, @@ -186689,28 +166408,23 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000554" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x554" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1364, @@ -186719,27 +166433,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1365, @@ -186748,27 +166457,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1367, @@ -186777,28 +166481,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1369, @@ -186807,29 +166506,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1371, @@ -186838,30 +166532,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1372, @@ -186870,29 +166559,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1373, @@ -186901,28 +166585,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1374, @@ -186931,29 +166610,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1375, @@ -186962,28 +166636,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1378, @@ -186992,29 +166661,24 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000000005b8" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x5b8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1464, @@ -187023,27 +166687,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1465, @@ -187052,27 +166711,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1467, @@ -187081,28 +166735,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1469, @@ -187111,29 +166760,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1471, @@ -187142,30 +166786,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1472, @@ -187174,29 +166813,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1473, @@ -187205,28 +166839,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1474, @@ -187235,29 +166864,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1475, @@ -187266,28 +166890,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1478, @@ -187296,29 +166915,24 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000000000000000000000000000000000000000061a" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x61a" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1562, @@ -187327,27 +166941,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1563, @@ -187356,27 +166965,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1565, @@ -187385,28 +166989,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1567, @@ -187415,29 +167014,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1569, @@ -187446,30 +167040,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1570, @@ -187478,29 +167067,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1571, @@ -187509,28 +167093,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1572, @@ -187539,29 +167118,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1573, @@ -187570,28 +167144,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1575, @@ -187600,29 +167169,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1576, @@ -187631,29 +167195,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1577, @@ -187662,30 +167221,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1578, @@ -187694,28 +167248,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1580, @@ -187724,29 +167273,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1581, @@ -187755,30 +167299,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1582, @@ -187787,30 +167326,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1583, @@ -187819,28 +167353,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1585, @@ -187849,60 +167378,50 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1586, - "op": "SHA3", + "op": "KECCAK256", "gas": 79300, "gasCost": 42, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x40", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1587, @@ -187911,16 +167430,16 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -187930,7 +167449,8 @@ export const trace: any = JSON.parse(` "storage": { "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 1588, @@ -187939,26 +167459,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1589, @@ -187967,27 +167484,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1590, @@ -187996,28 +167510,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1591, @@ -188026,27 +167537,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1592, @@ -188055,27 +167563,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x1" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1595, @@ -188084,28 +167589,25 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000692" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x1", + "0x692" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1682, @@ -188114,26 +167616,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1683, @@ -188142,26 +167641,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1685, @@ -188170,27 +167666,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x1" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1687, @@ -188199,28 +167692,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1689, @@ -188229,29 +167719,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x1", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1690, @@ -188260,28 +167747,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1691, @@ -188290,27 +167774,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1692, @@ -188319,28 +167800,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1693, @@ -188349,29 +167827,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1694, @@ -188380,28 +167855,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1696, @@ -188410,29 +167882,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1697, @@ -188441,29 +167910,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1698, @@ -188472,30 +167938,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1699, @@ -188504,28 +167967,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1701, @@ -188534,29 +167994,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1702, @@ -188565,30 +168022,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1703, @@ -188597,30 +168051,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1704, @@ -188629,28 +168080,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1706, @@ -188659,29 +168107,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1707, @@ -188690,63 +168135,57 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1708, - "op": "SHA3", + "op": "KECCAK256", "gas": 77075, "gasCost": 42, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x40", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1709, @@ -188755,30 +168194,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1710, @@ -188787,31 +168223,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1711, @@ -188820,32 +168253,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1712, @@ -188854,31 +168284,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1713, @@ -188887,21 +168314,21 @@ export const trace: any = JSON.parse(` "gasCost": 2900, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40", + "0x3d12be22e33902da0414f8da3ec", + "0x19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -188911,7 +168338,8 @@ export const trace: any = JSON.parse(` "storage": { "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 1714, @@ -188920,29 +168348,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1715, @@ -188951,29 +168376,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x40", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1716, @@ -188982,30 +168404,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x40", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1717, @@ -189014,29 +168433,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x40", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1718, @@ -189045,30 +168461,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x40", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1719, @@ -189077,28 +168490,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x40", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1720, @@ -189107,59 +168517,53 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1721, - "op": "SHA3", + "op": "KECCAK256", "gas": 74100, "gasCost": 42, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x40", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1722, @@ -189168,28 +168572,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1723, @@ -189198,19 +168599,19 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -189220,7 +168621,8 @@ export const trace: any = JSON.parse(` "storage": { "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 1724, @@ -189229,29 +168631,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1725, @@ -189260,30 +168659,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1726, @@ -189292,30 +168688,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1727, @@ -189324,30 +168717,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1730, @@ -189356,31 +168746,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x0", + "0x6c9" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1731, @@ -189389,31 +168776,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1732, @@ -189422,32 +168806,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1733, @@ -189456,32 +168837,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1736, @@ -189490,33 +168868,30 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000088a" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x88a" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2186, @@ -189525,32 +168900,29 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2187, @@ -189559,32 +168931,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2189, @@ -189593,33 +168962,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2190, @@ -189628,34 +168994,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2191, @@ -189664,34 +169027,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "fffffffffffffffffffffffffffffffffffffffffcb525c4295d123f45679354" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffcb525c4295d123f45679354" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2192, @@ -189700,35 +169060,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "fffffffffffffffffffffffffffffffffffffffffcb525c4295d123f45679354", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffcb525c4295d123f45679354", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2193, @@ -189737,34 +169094,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2194, @@ -189773,34 +169127,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2197, @@ -189809,35 +169160,32 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008ab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x1", + "0x8ab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2219, @@ -189846,33 +169194,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2220, @@ -189881,33 +169226,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2221, @@ -189916,32 +169258,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2222, @@ -189950,31 +169289,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006c9", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x6c9", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2223, @@ -189983,31 +169319,28 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000006c9" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x6c9" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1737, @@ -190016,30 +169349,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1738, @@ -190048,30 +169378,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1739, @@ -190080,30 +169407,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1740, @@ -190112,29 +169436,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1741, @@ -190143,28 +169464,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1742, @@ -190173,29 +169491,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1743, @@ -190204,19 +169519,19 @@ export const trace: any = JSON.parse(` "gasCost": 20000, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab", + "0x34ada3bd6a2edc0ba986cab", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -190226,7 +169541,8 @@ export const trace: any = JSON.parse(` "storage": { "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + }, + "refund": 9600 }, { "pc": 1744, @@ -190235,27 +169551,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1745, @@ -190264,26 +169577,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1746, @@ -190292,27 +169602,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1748, @@ -190321,28 +169628,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1750, @@ -190351,29 +169655,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1752, @@ -190382,30 +169683,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1753, @@ -190414,29 +169712,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1754, @@ -190445,28 +169740,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1755, @@ -190475,27 +169767,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1756, @@ -190504,28 +169793,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1758, @@ -190534,29 +169820,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1760, @@ -190565,30 +169848,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1762, @@ -190597,31 +169877,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x1", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1763, @@ -190630,30 +169907,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1764, @@ -190662,29 +169936,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1765, @@ -190693,28 +169964,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1798, @@ -190723,29 +169991,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1799, @@ -190754,30 +170019,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1801, @@ -190786,31 +170048,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x34ada3bd6a2edc0ba986cab", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1802, @@ -190819,31 +170078,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x34ada3bd6a2edc0ba986cab", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1805, @@ -190852,32 +170108,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000715" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x34ada3bd6a2edc0ba986cab", + "0x80", + "0x715" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1806, @@ -190886,32 +170139,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000715", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x715", + "0x80", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1807, @@ -190920,35 +170170,30 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000715", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x715", + "0x80", + "0x34ada3bd6a2edc0ba986cab", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1808, @@ -190957,21 +170202,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000715", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x715", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -190980,10 +170225,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1810, @@ -190992,22 +170234,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000715", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x715", + "0x80", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191016,10 +170258,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1811, @@ -191028,21 +170267,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000715", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x715", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191051,10 +170290,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1812, @@ -191063,21 +170299,21 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000715" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xa0", + "0x715" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191086,10 +170322,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1813, @@ -191098,20 +170331,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191120,10 +170353,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1814, @@ -191132,20 +170362,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191154,10 +170384,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1816, @@ -191166,21 +170393,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xa0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191189,10 +170416,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1817, @@ -191201,21 +170425,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xa0", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191224,10 +170448,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1818, @@ -191236,22 +170457,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xa0", + "0x80", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191260,10 +170481,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1819, @@ -191272,22 +170490,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x80", + "0x80", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191296,10 +170514,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1820, @@ -191308,21 +170523,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x80", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191331,10 +170546,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1821, @@ -191343,21 +170555,21 @@ export const trace: any = JSON.parse(` "gasCost": 1756, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x20", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191366,10 +170578,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1822, @@ -191378,16 +170587,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191396,10 +170605,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1823, @@ -191408,15 +170614,15 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191425,10 +170631,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1824, @@ -191437,14 +170640,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191453,10 +170656,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1825, @@ -191465,13 +170665,13 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191480,10 +170680,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1826, @@ -191492,12 +170689,12 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000287" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x287" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191506,10 +170703,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 647, @@ -191518,11 +170712,11 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191531,10 +170725,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 648, @@ -191543,11 +170734,11 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191556,10 +170747,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 649, @@ -191568,10 +170756,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191580,10 +170768,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 651, @@ -191592,11 +170777,11 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000df", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0xdf", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191605,10 +170790,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 652, @@ -191617,11 +170799,11 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000df" + "0xa9059cbb", + "0x1", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0xdf" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191630,10 +170812,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 653, @@ -191642,11 +170821,11 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000df", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0xa9059cbb", + "0x1", + "0xdf", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191655,10 +170834,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 654, @@ -191667,10 +170843,10 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000df", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0xa9059cbb", + "0x1", + "0xdf", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191679,10 +170855,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 655, @@ -191691,9 +170864,9 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000df" + "0xa9059cbb", + "0x1", + "0xdf" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191702,10 +170875,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 223, @@ -191714,8 +170884,8 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191724,10 +170894,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 224, @@ -191736,8 +170903,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191746,10 +170913,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 226, @@ -191758,9 +170922,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" + "0xa9059cbb", + "0x1", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191769,10 +170933,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 227, @@ -191781,9 +170942,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa9059cbb", + "0x1", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191792,10 +170953,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 228, @@ -191804,9 +170962,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0x80", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191815,10 +170973,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 229, @@ -191827,9 +170982,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xa9059cbb", + "0x80", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191838,10 +170993,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 230, @@ -191850,9 +171002,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xa9059cbb", + "0x80", + "0x1" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191861,10 +171013,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 231, @@ -191873,10 +171022,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa9059cbb", + "0x80", + "0x1", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191885,10 +171034,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 232, @@ -191897,8 +171043,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa9059cbb", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191907,10 +171053,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 234, @@ -191919,9 +171062,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0xa9059cbb", + "0x80", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191930,10 +171073,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 235, @@ -191942,8 +171082,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191952,10 +171092,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 238, @@ -191964,9 +171101,9 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c3" + "0xa9059cbb", + "0xa0", + "0xc3" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191975,10 +171112,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 195, @@ -191987,8 +171121,8 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -191997,10 +171131,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 196, @@ -192009,8 +171140,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -192019,10 +171150,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 198, @@ -192031,9 +171159,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040" + "0xa9059cbb", + "0xa0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -192042,10 +171170,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 199, @@ -192054,9 +171179,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa9059cbb", + "0xa0", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -192065,10 +171190,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 200, @@ -192077,10 +171199,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa9059cbb", + "0xa0", + "0x80", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -192089,10 +171211,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 201, @@ -192101,10 +171220,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0xa9059cbb", + "0x80", + "0x80", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -192113,10 +171232,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 202, @@ -192125,9 +171241,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0xa9059cbb", + "0x80", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -192136,10 +171252,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 203, @@ -192148,9 +171261,9 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 4, "stack": [ - "00000000000000000000000000000000000000000000000000000000a9059cbb", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa9059cbb", + "0x20", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -192159,10 +171272,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8469, @@ -192171,28 +171281,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000168", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x168", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192209,10 +171319,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8470, @@ -192221,28 +171328,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000168", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x168", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192259,10 +171366,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8471, @@ -192271,27 +171375,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000168" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x168" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192308,10 +171412,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8472, @@ -192320,26 +171421,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192356,10 +171457,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8473, @@ -192368,27 +171466,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192405,10 +171503,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8474, @@ -192417,28 +171512,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192455,10 +171550,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8476, @@ -192467,29 +171559,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192506,10 +171598,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8477, @@ -192518,30 +171607,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192558,10 +171647,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8478, @@ -192570,29 +171656,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192609,10 +171695,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8481, @@ -192621,30 +171704,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002143" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x0", + "0x2143" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192661,10 +171744,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8482, @@ -192673,28 +171753,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192711,10 +171791,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8484, @@ -192723,29 +171800,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192762,10 +171839,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8485, @@ -192774,29 +171848,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192813,10 +171887,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8486, @@ -192825,31 +171896,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x20" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000124", @@ -192864,10 +171935,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8487, @@ -192876,28 +171944,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192914,10 +171982,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8489, @@ -192926,29 +171991,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -192965,10 +172030,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8490, @@ -192977,29 +172039,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193016,10 +172078,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8492, @@ -193028,30 +172087,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193068,10 +172127,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8493, @@ -193080,31 +172136,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193121,10 +172177,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8494, @@ -193133,30 +172186,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000005f" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x5f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193173,10 +172226,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8495, @@ -193185,29 +172235,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193224,10 +172274,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8496, @@ -193236,30 +172283,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x40", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193276,10 +172323,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8497, @@ -193288,29 +172332,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193327,10 +172371,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8499, @@ -193339,30 +172380,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x164", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193379,10 +172420,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8500, @@ -193391,28 +172429,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193429,10 +172467,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8501, @@ -193441,29 +172476,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193480,10 +172515,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8502, @@ -193492,30 +172524,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x20", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193532,10 +172564,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8503, @@ -193544,28 +172573,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193582,10 +172611,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8504, @@ -193594,29 +172620,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193633,10 +172659,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8506, @@ -193645,30 +172668,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193685,10 +172708,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8508, @@ -193697,31 +172717,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x20", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193738,10 +172758,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8509, @@ -193750,32 +172767,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x20", + "0x0", + "0x20", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193792,10 +172809,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8510, @@ -193804,31 +172818,31 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x20", + "0x0", + "0x144" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193845,10 +172859,7 @@ export const trace: any = JSON.parse(` "d6a2edc0ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8511, @@ -193857,28 +172868,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193895,10 +172906,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8514, @@ -193907,29 +172915,29 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000002148" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20", + "0x2148" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193946,10 +172954,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8520, @@ -193958,28 +172963,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -193996,10 +173001,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8521, @@ -194008,28 +173010,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194046,10 +173048,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8522, @@ -194058,27 +173057,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x60", + "0x1", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194095,10 +173094,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8523, @@ -194107,27 +173103,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x124", + "0x1", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194144,10 +173140,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8524, @@ -194156,26 +173149,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x124", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194192,10 +173185,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8525, @@ -194204,26 +173194,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194240,10 +173230,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8526, @@ -194252,25 +173239,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194287,10 +173274,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8527, @@ -194299,26 +173283,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194335,10 +173319,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8528, @@ -194347,27 +173328,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194384,10 +173365,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8529, @@ -194396,27 +173374,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194433,10 +173411,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8532, @@ -194445,28 +173420,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002176" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x1", + "0x0", + "0x2176" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194483,10 +173458,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8533, @@ -194495,26 +173467,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194531,10 +173503,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8534, @@ -194543,25 +173512,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194578,10 +173547,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8535, @@ -194590,26 +173556,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194626,10 +173592,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8536, @@ -194638,26 +173601,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194674,10 +173637,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8537, @@ -194686,26 +173646,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194722,10 +173682,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8538, @@ -194734,27 +173691,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194771,10 +173728,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8541, @@ -194783,28 +173737,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002176" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x0", + "0x0", + "0x2176" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194821,10 +173775,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8542, @@ -194833,26 +173784,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194869,10 +173820,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8543, @@ -194881,25 +173829,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194916,10 +173864,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8544, @@ -194928,26 +173873,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -194964,10 +173909,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8545, @@ -194976,27 +173918,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x124", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195013,10 +173955,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8547, @@ -195025,28 +173964,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x124", + "0x124", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195063,10 +174002,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8548, @@ -195075,27 +174011,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x124", + "0x144" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195112,10 +174048,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8549, @@ -195124,27 +174057,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x144", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195161,10 +174094,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8550, @@ -195173,27 +174103,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x144", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195210,10 +174140,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8552, @@ -195222,28 +174149,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x144", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195260,10 +174187,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8553, @@ -195272,29 +174196,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x144", + "0x20", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195311,10 +174235,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8554, @@ -195323,28 +174244,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x144", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195361,10 +174282,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8555, @@ -195373,28 +174291,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x144", + "0x20", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195411,10 +174329,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8558, @@ -195423,29 +174338,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002173" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x144", + "0x20", + "0x1", + "0x2173" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195462,10 +174377,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8563, @@ -195474,27 +174386,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x144", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195511,10 +174423,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8564, @@ -195523,27 +174432,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x144", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195560,10 +174469,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8565, @@ -195572,26 +174478,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000144" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x144" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195608,10 +174514,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8566, @@ -195620,26 +174523,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195656,10 +174559,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8567, @@ -195668,28 +174568,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x1" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000164", @@ -195704,10 +174604,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8570, @@ -195716,27 +174613,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000021e1" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124", + "0x1", + "0x21e1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195753,10 +174650,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8673, @@ -195765,25 +174659,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195800,10 +174694,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8674, @@ -195812,25 +174703,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000124" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x124" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195847,10 +174738,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8675, @@ -195859,24 +174747,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195893,10 +174781,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8676, @@ -195905,23 +174790,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195938,10 +174823,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8677, @@ -195950,22 +174832,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -195982,10 +174864,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8678, @@ -195994,21 +174873,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196025,10 +174904,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8679, @@ -196037,20 +174913,20 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e1" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196067,10 +174943,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2273, @@ -196079,19 +174952,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196108,10 +174981,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2274, @@ -196120,19 +174990,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196149,10 +175019,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2275, @@ -196161,20 +175028,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196191,10 +175058,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2276, @@ -196203,20 +175067,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196233,10 +175097,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2279, @@ -196245,21 +175106,21 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000009c3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1", + "0x9c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196276,10 +175137,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2499, @@ -196288,19 +175146,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196317,10 +175175,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2500, @@ -196329,19 +175184,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196358,10 +175213,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2502, @@ -196370,20 +175222,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196400,10 +175252,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2503, @@ -196412,21 +175261,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196443,10 +175292,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2504, @@ -196455,21 +175301,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196486,10 +175332,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2537, @@ -196498,22 +175341,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "70a0823100000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x164", + "0x70a0823100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196530,10 +175373,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2538, @@ -196542,23 +175382,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "70a0823100000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x164", + "0x70a0823100000000000000000000000000000000000000000000000000000000", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196575,10 +175415,7 @@ export const trace: any = JSON.parse(` "00000001ba986cab000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2539, @@ -196587,21 +175424,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196618,10 +175455,7 @@ export const trace: any = JSON.parse(` "0000000170a08231000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2540, @@ -196630,22 +175464,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x164", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196662,10 +175496,7 @@ export const trace: any = JSON.parse(` "0000000170a08231000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2542, @@ -196674,23 +175505,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x164", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196707,10 +175538,7 @@ export const trace: any = JSON.parse(` "0000000170a08231000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2543, @@ -196719,24 +175547,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x164", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196753,10 +175581,7 @@ export const trace: any = JSON.parse(` "0000000170a08231000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2544, @@ -196765,23 +175590,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000168" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x164", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x168" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196798,10 +175623,7 @@ export const trace: any = JSON.parse(` "0000000170a08231000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2545, @@ -196810,21 +175632,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196841,10 +175663,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2546, @@ -196853,21 +175672,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196884,10 +175703,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2547, @@ -196896,21 +175712,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196927,10 +175743,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2568, @@ -196939,22 +175752,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x164", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -196971,10 +175784,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2569, @@ -196983,23 +175793,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x164", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197016,10 +175826,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2570, @@ -197028,22 +175835,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x164", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197060,10 +175867,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2571, @@ -197072,22 +175876,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197104,10 +175908,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2576, @@ -197116,23 +175917,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x164", + "0x164", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197149,10 +175950,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2577, @@ -197161,23 +175959,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197194,10 +175992,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2579, @@ -197206,24 +176001,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x164", + "0x164", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197240,10 +176035,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2580, @@ -197252,25 +176044,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x164", + "0x164", + "0x24", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197287,10 +176079,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2581, @@ -197299,26 +176088,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x164", + "0x164", + "0x24", + "0x24", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197335,10 +176124,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2582, @@ -197347,25 +176133,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000188" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x164", + "0x164", + "0x24", + "0x188" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197382,10 +176168,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2583, @@ -197394,25 +176177,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x164", + "0x24", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197429,10 +176212,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2585, @@ -197441,26 +176221,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x164", + "0x24", + "0x164", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197477,10 +176257,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2586, @@ -197489,26 +176266,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x24", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197525,10 +176302,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2587, @@ -197537,26 +176311,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x164", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197573,10 +176347,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2588, @@ -197585,26 +176356,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197621,10 +176392,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2589, @@ -197633,27 +176401,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197670,10 +176438,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2590, @@ -197682,27 +176447,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197719,10 +176484,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2591, @@ -197731,26 +176493,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197767,10 +176529,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2592, @@ -197779,25 +176538,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197814,10 +176573,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2593, @@ -197826,26 +176582,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197862,10 +176618,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2594, @@ -197874,27 +176627,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197911,10 +176664,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2595, @@ -197923,28 +176673,28 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -197961,10 +176711,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2596, @@ -197973,28 +176720,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000088a" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x88a" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -198011,10 +176758,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2597, @@ -198023,28 +176767,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -198061,10 +176805,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2598, @@ -198073,29 +176814,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -198112,10 +176853,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2599, @@ -198124,29 +176862,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -198163,10 +176901,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2602, @@ -198175,30 +176910,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000a2f" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0", + "0x1", + "0xa2f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -198215,10 +176950,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2607, @@ -198227,28 +176959,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -198265,10 +176997,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2608, @@ -198277,28 +177006,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -198315,10 +177044,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2609, @@ -198327,27 +177053,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -198364,10 +177090,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2610, @@ -198376,28 +177099,28 @@ export const trace: any = JSON.parse(` "gasCost": 51831, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000000000000000000000000000000000000000cdac" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xcdac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -198414,10 +177137,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 0, @@ -198426,11 +177146,7 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [], - "memory": [], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2, @@ -198439,13 +177155,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" + "0x80" ], - "memory": [], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 4, @@ -198454,18 +177166,10 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x80", + "0x40" ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 5, @@ -198479,10 +177183,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 7, @@ -198491,17 +177192,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8, @@ -198510,18 +177208,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 9, @@ -198530,17 +177225,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 12, @@ -198549,18 +177241,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000006d" + "0x0", + "0x6d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 13, @@ -198574,10 +177263,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 15, @@ -198586,17 +177272,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 16, @@ -198605,17 +177288,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" + "0x70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 46, @@ -198624,18 +177304,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "0000000100000000000000000000000000000000000000000000000000000000" + "0x70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", + "0x100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 47, @@ -198644,18 +177321,15 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 4, "stack": [ - "0000000100000000000000000000000000000000000000000000000000000000", - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" + "0x100000000000000000000000000000000000000000000000000000000", + "0x70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 48, @@ -198664,17 +177338,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 53, @@ -198683,18 +177354,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x70a08231", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 54, @@ -198703,17 +177371,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 55, @@ -198722,18 +177387,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 60, @@ -198742,19 +177404,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000003659cfe6" + "0x70a08231", + "0x70a08231", + "0x3659cfe6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 61, @@ -198763,18 +177422,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 64, @@ -198783,19 +177439,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000077" + "0x70a08231", + "0x0", + "0x77" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 65, @@ -198804,17 +177457,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 66, @@ -198823,18 +177473,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 71, @@ -198843,19 +177490,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000004f1ef286" + "0x70a08231", + "0x70a08231", + "0x4f1ef286" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 72, @@ -198864,18 +177508,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 75, @@ -198884,19 +177525,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000ba" + "0x70a08231", + "0x0", + "0xba" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 76, @@ -198905,17 +177543,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 77, @@ -198924,18 +177559,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 82, @@ -198944,19 +177576,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005c60da1b" + "0x70a08231", + "0x70a08231", + "0x5c60da1b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 83, @@ -198965,18 +177594,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 86, @@ -198985,19 +177611,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000108" + "0x70a08231", + "0x0", + "0x108" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 87, @@ -199006,17 +177629,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 88, @@ -199025,18 +177645,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 93, @@ -199045,19 +177662,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000008f283970" + "0x70a08231", + "0x70a08231", + "0x8f283970" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 94, @@ -199066,18 +177680,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 97, @@ -199086,19 +177697,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000015f" + "0x70a08231", + "0x0", + "0x15f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 98, @@ -199107,17 +177715,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 99, @@ -199126,18 +177731,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 104, @@ -199146,19 +177748,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000f851a440" + "0x70a08231", + "0x70a08231", + "0xf851a440" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 105, @@ -199167,18 +177766,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 108, @@ -199187,19 +177783,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a2" + "0x70a08231", + "0x0", + "0x1a2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 109, @@ -199208,17 +177801,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 110, @@ -199227,17 +177817,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 113, @@ -199246,18 +177833,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x70a08231", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 116, @@ -199266,19 +177850,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "00000000000000000000000000000000000000000000000000000000000001f9" + "0x70a08231", + "0x75", + "0x1f9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 505, @@ -199287,18 +177868,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x70a08231", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 506, @@ -199307,18 +177885,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x70a08231", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 509, @@ -199327,19 +177902,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 512, @@ -199348,20 +177920,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000576" + "0x70a08231", + "0x75", + "0x201", + "0x576" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1398, @@ -199370,19 +177939,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1399, @@ -199391,19 +177957,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1402, @@ -199412,20 +177975,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" + "0x70a08231", + "0x75", + "0x201", + "0x57e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1405, @@ -199434,21 +177994,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "00000000000000000000000000000000000000000000000000000000000006a8" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x6a8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1704, @@ -199457,20 +178014,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" + "0x70a08231", + "0x75", + "0x201", + "0x57e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1705, @@ -199479,20 +178033,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e" + "0x70a08231", + "0x75", + "0x201", + "0x57e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1707, @@ -199501,21 +178052,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1708, @@ -199524,22 +178072,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1741, @@ -199548,23 +178093,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1743, @@ -199573,24 +178115,21 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1744, @@ -199599,23 +178138,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1745, @@ -199624,23 +178160,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1746, @@ -199649,22 +178182,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 1747, @@ -199673,13 +178203,13 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -199696,7 +178226,8 @@ export const trace: any = JSON.parse(` "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 1748, @@ -199705,30 +178236,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x0", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1749, @@ -199737,30 +178258,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1750, @@ -199769,29 +178280,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1751, @@ -199800,28 +178301,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000057e", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x70a08231", + "0x75", + "0x201", + "0x57e", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1752, @@ -199830,28 +178321,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "000000000000000000000000000000000000000000000000000000000000057e" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x57e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1406, @@ -199860,27 +178341,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1407, @@ -199889,27 +178360,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1428, @@ -199918,28 +178379,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1429, @@ -199948,27 +178399,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1430, @@ -199977,28 +178418,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1451, @@ -200007,29 +178438,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1452, @@ -200038,28 +178459,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x75", + "0x201", + "0x807a96288a1a408dbc13de2b1d087d10356395d2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1453, @@ -200068,27 +178479,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x201", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1454, @@ -200097,27 +178498,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x201", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1455, @@ -200126,27 +178517,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x201", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1456, @@ -200155,27 +178536,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x201", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1459, @@ -200184,28 +178555,18 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000647" + "0x70a08231", + "0x75", + "0x201", + "0x1", + "0x647" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1607, @@ -200214,26 +178575,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1608, @@ -200242,26 +178593,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1611, @@ -200270,27 +178611,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" + "0x70a08231", + "0x75", + "0x201", + "0x64f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1614, @@ -200299,28 +178630,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f", - "0000000000000000000000000000000000000000000000000000000000000777" + "0x70a08231", + "0x75", + "0x201", + "0x64f", + "0x777" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1911, @@ -200329,27 +178650,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" + "0x70a08231", + "0x75", + "0x201", + "0x64f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1912, @@ -200358,27 +178669,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201", - "000000000000000000000000000000000000000000000000000000000000064f" + "0x70a08231", + "0x75", + "0x201", + "0x64f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1615, @@ -200387,26 +178688,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1616, @@ -200415,26 +178706,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000201" + "0x70a08231", + "0x75", + "0x201" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 513, @@ -200443,25 +178724,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x70a08231", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 514, @@ -200470,25 +178741,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075" + "0x70a08231", + "0x75" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 517, @@ -200497,26 +178758,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211" + "0x70a08231", + "0x75", + "0x211" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 520, @@ -200525,27 +178776,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" + "0x70a08231", + "0x75", + "0x211", + "0x20c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 523, @@ -200554,28 +178795,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000651" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x651" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1617, @@ -200584,27 +178815,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" + "0x70a08231", + "0x75", + "0x211", + "0x20c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1618, @@ -200613,27 +178834,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c" + "0x70a08231", + "0x75", + "0x211", + "0x20c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1620, @@ -200642,28 +178853,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1621, @@ -200672,29 +178873,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1654, @@ -200703,30 +178894,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1656, @@ -200735,31 +178916,21 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1657, @@ -200768,30 +178939,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1658, @@ -200800,30 +178961,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1659, @@ -200832,29 +178983,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1660, @@ -200863,13 +179004,13 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -200886,7 +179027,8 @@ export const trace: any = JSON.parse(` "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 1661, @@ -200895,30 +179037,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "0000000000000000000000000000000000000000000000000000000000000000", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0x0", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1662, @@ -200927,30 +179059,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1663, @@ -200959,29 +179081,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1664, @@ -200990,28 +179102,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000000000000000000000000000000000000000020c", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0x20c", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1665, @@ -201020,28 +179122,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "000000000000000000000000000000000000000000000000000000000000020c" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x20c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 524, @@ -201050,27 +179142,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 525, @@ -201079,27 +179161,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 528, @@ -201108,28 +179180,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000682" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x682" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1666, @@ -201138,27 +179200,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1667, @@ -201167,27 +179219,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1668, @@ -201196,28 +179238,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1670, @@ -201226,29 +179258,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x24", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1671, @@ -201257,30 +179279,20 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x24", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1672, @@ -201289,27 +179301,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1674, @@ -201318,28 +179320,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1675, @@ -201348,29 +179340,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1676, @@ -201379,30 +179361,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0", + "0x24" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1678, @@ -201411,31 +179383,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0", + "0x24", + "0x0" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1679, @@ -201444,32 +179406,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0", + "0x24", + "0x0", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1680, @@ -201478,33 +179430,23 @@ export const trace: any = JSON.parse(` "gasCost": 50293, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "000000000000000000000000000000000000000000000000000000000000c791" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x0", + "0x0", + "0x24", + "0x0", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0xc791" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 0, @@ -201513,18 +179455,7 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2, @@ -201533,20 +179464,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" + "0x80" ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 4, @@ -201555,25 +179475,10 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x80", + "0x40" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 5, @@ -201587,17 +179492,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 6, @@ -201606,24 +179501,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 7, @@ -201632,25 +179517,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8, @@ -201659,25 +179534,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 11, @@ -201686,26 +179551,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" + "0x0", + "0x1", + "0x10" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 16, @@ -201714,24 +179569,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 17, @@ -201740,24 +179585,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 18, @@ -201771,17 +179606,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 20, @@ -201790,24 +179615,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 21, @@ -201816,25 +179631,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 22, @@ -201843,24 +179648,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 25, @@ -201869,25 +179664,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000336" + "0x0", + "0x336" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 26, @@ -201901,17 +179686,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 28, @@ -201920,24 +179695,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 29, @@ -201946,24 +179711,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" + "0x70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 31, @@ -201972,25 +179727,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 32, @@ -201999,24 +179744,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 33, @@ -202025,25 +179760,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 38, @@ -202052,26 +179777,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000007f2eecc3" + "0x70a08231", + "0x70a08231", + "0x7f2eecc3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 39, @@ -202080,25 +179795,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 42, @@ -202107,26 +179812,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001b2" + "0x70a08231", + "0x1", + "0x1b2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 434, @@ -202135,24 +179830,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 435, @@ -202161,24 +179846,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 436, @@ -202187,25 +179862,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 441, @@ -202214,26 +179879,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000003644e515" + "0x70a08231", + "0x70a08231", + "0x3644e515" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 442, @@ -202242,25 +179897,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 445, @@ -202269,26 +179914,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000281" + "0x70a08231", + "0x0", + "0x281" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 446, @@ -202297,24 +179932,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 447, @@ -202323,25 +179948,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 452, @@ -202350,26 +179965,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000004e44d956" + "0x70a08231", + "0x70a08231", + "0x4e44d956" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 453, @@ -202378,25 +179983,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 456, @@ -202405,26 +180000,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000022a" + "0x70a08231", + "0x0", + "0x22a" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 457, @@ -202433,24 +180018,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 458, @@ -202459,25 +180034,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 463, @@ -202486,26 +180051,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005a049a70" + "0x70a08231", + "0x70a08231", + "0x5a049a70" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 464, @@ -202514,25 +180069,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 467, @@ -202541,26 +180086,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000204" + "0x70a08231", + "0x0", + "0x204" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 468, @@ -202569,24 +180104,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 469, @@ -202595,25 +180120,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 474, @@ -202622,26 +180137,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005a049a70" + "0x70a08231", + "0x70a08231", + "0x5a049a70" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 475, @@ -202650,25 +180155,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 478, @@ -202677,26 +180172,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000088e" + "0x70a08231", + "0x0", + "0x88e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 479, @@ -202705,24 +180190,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 480, @@ -202731,25 +180206,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 485, @@ -202758,26 +180223,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000005c975abb" + "0x70a08231", + "0x70a08231", + "0x5c975abb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 486, @@ -202786,25 +180241,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 489, @@ -202813,26 +180258,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000008dc" + "0x70a08231", + "0x0", + "0x8dc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 490, @@ -202841,24 +180276,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 491, @@ -202867,25 +180292,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 496, @@ -202894,26 +180309,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 497, @@ -202922,25 +180327,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 500, @@ -202949,26 +180344,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008e4" + "0x70a08231", + "0x1", + "0x8e4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2276, @@ -202977,24 +180362,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2277, @@ -203003,24 +180378,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2280, @@ -203029,25 +180394,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d" + "0x70a08231", + "0x40d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2282, @@ -203056,26 +180411,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0x40d", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2283, @@ -203084,27 +180429,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0x40d", + "0x4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2284, @@ -203113,28 +180448,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0x40d", + "0x4", + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2285, @@ -203143,27 +180468,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x40d", + "0x4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2287, @@ -203172,28 +180487,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x40d", + "0x4", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2288, @@ -203202,29 +180507,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x40d", + "0x4", + "0x20", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2289, @@ -203233,28 +180528,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x40d", + "0x4", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2290, @@ -203263,28 +180548,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x40d", + "0x4", + "0x20", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2293, @@ -203293,29 +180568,19 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000008fa" + "0x70a08231", + "0x40d", + "0x4", + "0x20", + "0x1", + "0x8fa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2298, @@ -203324,27 +180589,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x40d", + "0x4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2299, @@ -203353,27 +180608,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x40d", + "0x4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2300, @@ -203382,26 +180627,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0x40d", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2301, @@ -203410,26 +180645,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2322, @@ -203438,27 +180663,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2323, @@ -203467,26 +180682,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2326, @@ -203495,27 +180700,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002798" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x2798" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10136, @@ -203524,26 +180719,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10137, @@ -203552,26 +180737,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10158, @@ -203580,27 +180755,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10159, @@ -203609,26 +180774,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10161, @@ -203637,27 +180792,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x40d", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10162, @@ -203666,27 +180811,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0x40d", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10163, @@ -203695,28 +180830,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x40d", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10164, @@ -203725,26 +180850,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x40d", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10166, @@ -203753,27 +180868,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009" + "0x70a08231", + "0x40d", + "0x0", + "0x9" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10168, @@ -203782,28 +180887,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x40d", + "0x0", + "0x9", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10169, @@ -203812,26 +180907,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x40d", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10171, @@ -203840,56 +180925,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0x40d", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10172, - "op": "SHA3", + "op": "KECCAK256", "gas": 49866, "gasCost": 42, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x40d", + "0x40", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10173, @@ -203898,9 +180963,9 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" + "0x70a08231", + "0x40d", + "0xbab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -203917,7 +180982,8 @@ export const trace: any = JSON.parse(` "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 10174, @@ -203926,26 +180992,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000040d", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x70a08231", + "0x40d", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10175, @@ -203954,26 +181010,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000000000000040d" + "0x70a08231", + "0x4c864948ed5", + "0x40d" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1037, @@ -203982,25 +181028,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x70a08231", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1038, @@ -204009,25 +181045,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x70a08231", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1040, @@ -204036,26 +181062,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0x4c864948ed5", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1041, @@ -204064,27 +181080,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0x4c864948ed5", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1042, @@ -204093,27 +181099,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x4c864948ed5", + "0x40", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1043, @@ -204122,27 +181118,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x70a08231", + "0x80", + "0x40", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1044, @@ -204151,30 +181137,18 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x40", + "0x4c864948ed5", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1045, @@ -204183,9 +181157,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0x80", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -204194,17 +181168,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1046, @@ -204213,9 +181177,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -204224,17 +181188,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1047, @@ -204243,9 +181197,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -204254,17 +181208,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1048, @@ -204273,10 +181217,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -204285,17 +181229,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1049, @@ -204304,10 +181238,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -204316,17 +181250,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1050, @@ -204335,9 +181259,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -204346,17 +181270,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1052, @@ -204365,10 +181279,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x80", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -204377,17 +181291,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1053, @@ -204396,9 +181300,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x80", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -204407,17 +181311,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1054, @@ -204426,9 +181320,9 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 5, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x20", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -204437,17 +181331,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000004c864948ed5" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1681, @@ -204456,28 +181340,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1682, @@ -204486,29 +181360,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x20" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1684, @@ -204517,30 +181381,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x20", + "0x0" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1685, @@ -204549,31 +181403,21 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x20", + "0x0", + "0x0" ], "memory": [ "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1686, @@ -204582,28 +181426,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1687, @@ -204612,29 +181446,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1689, @@ -204643,30 +181467,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x0" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1690, @@ -204675,31 +181489,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x0", + "0x1" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1691, @@ -204708,30 +181512,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x0" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1694, @@ -204740,31 +181534,21 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000006a3" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x0", + "0x6a3" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1695, @@ -204773,29 +181557,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1696, @@ -204804,30 +181578,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x20" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1698, @@ -204836,31 +181600,21 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000075", - "0000000000000000000000000000000000000000000000000000000000000211", - "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x75", + "0x211", + "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "0x1", + "0x1", + "0x20", + "0x0" ], "memory": [ "000000000000000000000000000000000000000000000000000004c864948ed5", "7c2e411e00000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2611, @@ -204869,23 +181623,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -204902,17 +181656,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2612, @@ -204921,23 +181665,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -204954,17 +181698,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2613, @@ -204973,24 +181707,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205007,17 +181741,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2614, @@ -205026,24 +181750,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205060,17 +181784,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2617, @@ -205079,25 +181793,25 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000a43" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x0", + "0x1", + "0xa43" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205114,17 +181828,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2627, @@ -205133,23 +181837,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205166,17 +181870,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2628, @@ -205185,23 +181879,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205218,17 +181912,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2629, @@ -205237,22 +181921,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231", + "0x188" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205269,17 +181953,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2630, @@ -205288,21 +181962,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205319,17 +181993,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2631, @@ -205338,20 +182002,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205368,17 +182032,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2632, @@ -205387,19 +182041,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205416,17 +182070,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2634, @@ -205435,20 +182079,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205465,17 +182109,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2635, @@ -205484,20 +182118,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205514,17 +182148,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2636, @@ -205533,21 +182157,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205564,17 +182188,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2638, @@ -205583,22 +182197,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205615,17 +182229,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2639, @@ -205634,23 +182238,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205667,17 +182271,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2640, @@ -205686,22 +182280,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205718,17 +182312,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2641, @@ -205737,22 +182321,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205769,17 +182353,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2644, @@ -205788,23 +182362,23 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000a59" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20", + "0x1", + "0xa59" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205821,17 +182395,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2649, @@ -205840,21 +182404,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205871,17 +182435,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2650, @@ -205890,21 +182444,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205921,17 +182475,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2651, @@ -205940,20 +182484,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -205970,17 +182514,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2652, @@ -205989,20 +182523,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206019,17 +182553,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2654, @@ -206038,21 +182562,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206069,17 +182593,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2655, @@ -206088,22 +182602,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206120,17 +182634,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2656, @@ -206139,22 +182643,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206171,17 +182675,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2689, @@ -206190,23 +182684,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "70a0823100000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x40", + "0x164", + "0x70a0823100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206223,17 +182717,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2690, @@ -206242,24 +182726,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "70a0823100000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x40", + "0x164", + "0x70a0823100000000000000000000000000000000000000000000000000000000", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206276,17 +182760,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2691, @@ -206295,22 +182769,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206327,17 +182801,7 @@ export const trace: any = JSON.parse(` "0000000170a08231000000000000000000000000000000000000000000000000", "000000007c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2692, @@ -206346,23 +182810,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x40", + "0x164", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206379,17 +182843,7 @@ export const trace: any = JSON.parse(` "0000000170a08231000000000000000000000000000000000000000000000000", "000000007c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2694, @@ -206398,24 +182852,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x40", + "0x164", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206432,17 +182886,7 @@ export const trace: any = JSON.parse(` "0000000170a08231000000000000000000000000000000000000000000000000", "000000007c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2695, @@ -206451,25 +182895,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x40", + "0x164", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206486,17 +182930,7 @@ export const trace: any = JSON.parse(` "0000000170a08231000000000000000000000000000000000000000000000000", "000000007c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2696, @@ -206505,24 +182939,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000168" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x40", + "0x164", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x168" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206539,17 +182973,7 @@ export const trace: any = JSON.parse(` "0000000170a08231000000000000000000000000000000000000000000000000", "000000007c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2697, @@ -206558,22 +182982,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206590,17 +183014,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2698, @@ -206609,22 +183023,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x164", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206641,17 +183055,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2699, @@ -206660,22 +183064,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x4c864948ed5", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206692,17 +183096,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2700, @@ -206711,22 +183105,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x164", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206743,17 +183137,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2701, @@ -206762,22 +183146,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x164", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206794,17 +183178,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2702, @@ -206813,21 +183187,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206844,17 +183218,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2723, @@ -206863,22 +183227,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x164", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206895,17 +183259,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2724, @@ -206914,25 +183268,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" - ], - "memory": [ + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x164", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000164", @@ -206947,17 +183301,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2725, @@ -206966,22 +183310,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x164", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -206998,17 +183342,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2726, @@ -207017,22 +183351,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207049,17 +183383,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2731, @@ -207068,23 +183392,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x164", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207101,17 +183425,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2732, @@ -207120,23 +183434,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207153,17 +183467,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2734, @@ -207172,24 +183476,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x164", + "0x164", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207206,17 +183510,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2735, @@ -207225,25 +183519,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x164", + "0x164", + "0x24", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207260,17 +183554,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2736, @@ -207279,26 +183563,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x164", + "0x164", + "0x24", + "0x24", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207315,17 +183599,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2737, @@ -207334,25 +183608,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000188" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x164", + "0x164", + "0x24", + "0x188" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207369,17 +183643,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2738, @@ -207388,25 +183652,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x164", + "0x24", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207423,17 +183687,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2740, @@ -207442,26 +183696,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x164", + "0x24", + "0x164", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207478,17 +183732,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2741, @@ -207497,26 +183741,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x24", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207533,17 +183777,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2742, @@ -207552,26 +183786,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x24", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207588,17 +183822,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2743, @@ -207607,26 +183831,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x164", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207643,17 +183867,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2744, @@ -207662,26 +183876,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207698,17 +183912,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2745, @@ -207717,27 +183921,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207754,17 +183958,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2746, @@ -207773,27 +183967,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207810,17 +184004,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2747, @@ -207829,26 +184013,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207865,17 +184049,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2748, @@ -207884,25 +184058,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207919,17 +184093,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2749, @@ -207938,26 +184102,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -207974,17 +184138,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2750, @@ -207993,27 +184147,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -208030,17 +184184,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2751, @@ -208049,28 +184193,28 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -208087,17 +184231,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2752, @@ -208106,28 +184240,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e6" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -208144,17 +184278,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2753, @@ -208163,28 +184287,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -208201,17 +184325,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2754, @@ -208220,29 +184334,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -208259,17 +184373,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2755, @@ -208278,29 +184382,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -208317,17 +184421,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2758, @@ -208336,30 +184430,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000acb" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x1", + "0xacb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -208376,17 +184470,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2763, @@ -208395,28 +184479,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -208433,17 +184517,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2764, @@ -208452,28 +184526,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -208490,17 +184564,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2765, @@ -208509,27 +184573,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -208546,17 +184610,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2766, @@ -208565,28 +184619,28 @@ export const trace: any = JSON.parse(` "gasCost": 50131, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000000000000000000000000000000000000000c6ed" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x20", + "0x164", + "0x24", + "0x164", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xc6ed" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -208603,17 +184657,7 @@ export const trace: any = JSON.parse(` "0000000170a082310000000000000000000000007a809081f991ecfe0ab2727c", "7e90d2ad7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 0, @@ -208622,18 +184666,7 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2, @@ -208642,20 +184675,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" + "0x80" ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 4, @@ -208664,25 +184686,10 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x80", + "0x40" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 5, @@ -208696,17 +184703,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 6, @@ -208715,24 +184712,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 7, @@ -208741,25 +184728,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 8, @@ -208768,25 +184745,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 11, @@ -208795,26 +184762,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" + "0x0", + "0x1", + "0x10" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 16, @@ -208823,24 +184780,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 17, @@ -208849,24 +184796,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 18, @@ -208880,17 +184817,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 20, @@ -208899,24 +184826,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 21, @@ -208925,25 +184842,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 22, @@ -208952,24 +184859,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 25, @@ -208978,25 +184875,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a9" + "0x0", + "0xa9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 26, @@ -209010,17 +184897,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 28, @@ -209029,24 +184906,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 29, @@ -209055,24 +184922,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" + "0x70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 31, @@ -209081,25 +184938,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x70a082310000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 32, @@ -209108,24 +184955,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 33, @@ -209134,25 +184971,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 38, @@ -209161,26 +184988,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000039509351" + "0x70a08231", + "0x70a08231", + "0x39509351" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 39, @@ -209189,25 +185006,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 42, @@ -209216,26 +185023,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000071" + "0x70a08231", + "0x0", + "0x71" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 43, @@ -209244,24 +185041,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 44, @@ -209270,25 +185057,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 49, @@ -209297,26 +185074,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000039509351" + "0x70a08231", + "0x70a08231", + "0x39509351" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 50, @@ -209325,25 +185092,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 53, @@ -209352,26 +185109,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000145" + "0x70a08231", + "0x0", + "0x145" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 54, @@ -209380,24 +185127,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 55, @@ -209406,25 +185143,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 60, @@ -209433,26 +185160,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 61, @@ -209461,25 +185178,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 64, @@ -209488,26 +185195,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000158" + "0x70a08231", + "0x1", + "0x158" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 344, @@ -209516,24 +185213,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 345, @@ -209542,24 +185229,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 348, @@ -209568,25 +185245,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3" + "0x70a08231", + "0xf3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 351, @@ -209595,26 +185262,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166" + "0x70a08231", + "0xf3", + "0x166" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 352, @@ -209623,27 +185280,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0xf3", + "0x166", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 354, @@ -209652,28 +185299,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 357, @@ -209682,29 +185319,19 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000007fa" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x7fa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2042, @@ -209713,28 +185340,18 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2043, @@ -209743,28 +185360,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2045, @@ -209773,29 +185380,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2047, @@ -209804,30 +185401,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2048, @@ -209836,31 +185423,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2049, @@ -209869,32 +185446,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2050, @@ -209903,31 +185470,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2051, @@ -209936,30 +185493,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2052, @@ -209968,30 +185515,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2055, @@ -210000,31 +185537,21 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000080c" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x1", + "0x80c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2060, @@ -210033,29 +185560,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2061, @@ -210064,29 +185581,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2064, @@ -210095,30 +185602,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2065, @@ -210127,31 +185624,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2068, @@ -210160,32 +185647,22 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000778" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x778" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1912, @@ -210194,31 +185671,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1913, @@ -210227,31 +185694,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1914, @@ -210260,32 +185717,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1915, @@ -210294,32 +185741,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1917, @@ -210328,33 +185765,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1919, @@ -210363,34 +185790,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1921, @@ -210399,35 +185816,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1922, @@ -210436,34 +185843,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1923, @@ -210472,33 +185869,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1924, @@ -210507,34 +185894,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1925, @@ -210543,33 +185920,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1926, @@ -210578,34 +185945,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1927, @@ -210614,33 +185971,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1930, @@ -210649,34 +185996,24 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000078f" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x78f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1935, @@ -210685,32 +186022,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1936, @@ -210719,32 +186046,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1937, @@ -210753,32 +186070,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000815" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4", + "0x815" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1938, @@ -210787,32 +186094,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x815", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 1939, @@ -210821,31 +186118,21 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000815" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x815" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2069, @@ -210854,30 +186141,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2070, @@ -210886,30 +186163,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2071, @@ -210918,30 +186185,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000166" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x24", + "0x4", + "0x0", + "0x166" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2072, @@ -210950,30 +186207,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x166", + "0x4", + "0x0", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2073, @@ -210982,29 +186229,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x166", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2074, @@ -211013,28 +186250,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x166", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 2075, @@ -211043,27 +186270,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000166" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x166" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 358, @@ -211072,26 +186289,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 359, @@ -211100,26 +186307,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 361, @@ -211128,27 +186325,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 363, @@ -211157,28 +186344,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 365, @@ -211187,29 +186364,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 366, @@ -211218,28 +186385,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 367, @@ -211248,27 +186405,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 368, @@ -211277,26 +186424,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 370, @@ -211305,27 +186442,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 371, @@ -211334,27 +186461,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x70a08231", + "0xf3", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 372, @@ -211363,28 +186480,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 373, @@ -211393,26 +186500,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 375, @@ -211421,27 +186518,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0xf3", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 376, @@ -211450,28 +186537,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 377, @@ -211480,28 +186557,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0xf3", + "0x0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 378, @@ -211510,26 +186577,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 380, @@ -211538,56 +186595,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0xf3", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 381, - "op": "SHA3", + "op": "KECCAK256", "gas": 49680, "gasCost": 42, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x40", + "0x0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000001": "000000000000000000000000f0d160dec1749afaf5a831668093b1431f7c8527", - "0e29155ec7c5fdcedbc727b008cf17405aff72d64263c072ae25cfeab06cf97f": "0000000000000000000000000000000000000000000000000000000000000000", - "10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b": "000000000000000000000000807a96288a1a408dbc13de2b1d087d10356395d2", - "7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3": "000000000000000000000000a2327a938febf5fec13bacfb16ae10ecbc4cbdcf", - "9aadc26f6e894b07a574e1f212427c04d9c0b4132144b6d35e89c37ccc54fd4b": "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdcbe98", - "ab1d2c6dbaccc179d7a23a4f1c233836781445d497c0c620ed8d5cd5a0b4dedb": "0000000000000000000000000000000000000000000000000000000000000000", - "b71cd8558387a4d91180cf1b6c97838e2e432d6db56fa543cb1a6f0de655c4f6": "0000000000000000000000000000000000000000000000000000000000000000", - "bab3151808b08d725f63d2762fd7c03066a30648a2e8caf679fca8b78f10342e": "000000000000000000000000000000000000000000000000000004c864948ed5", - "dc51a0a44317b550a6b5ddb34687ce2bd40e4750eec27343e32b23e686739208": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 382, @@ -211596,9 +186633,9 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b" + "0x70a08231", + "0xf3", + "0x19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -211608,7 +186645,8 @@ export const trace: any = JSON.parse(` "storage": { "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + }, + "refund": 9600 }, { "pc": 383, @@ -211617,19 +186655,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x70a08231", + "0xf3", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 384, @@ -211638,19 +186673,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000000f3" + "0x70a08231", + "0x3d12be22e33902da0414f8da3ec", + "0xf3" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 243, @@ -211659,18 +186691,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x70a08231", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 244, @@ -211679,18 +186708,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x70a08231", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 246, @@ -211699,19 +186725,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0x3d12be22e33902da0414f8da3ec", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 247, @@ -211720,19 +186743,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x3d12be22e33902da0414f8da3ec", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 248, @@ -211741,19 +186761,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x70a08231", + "0x80", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 249, @@ -211762,22 +186779,17 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x3d12be22e33902da0414f8da3ec", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 250, @@ -211786,8 +186798,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -211796,10 +186808,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 252, @@ -211808,9 +186817,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x80", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -211819,10 +186828,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 253, @@ -211831,8 +186837,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xa0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -211841,10 +186847,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 256, @@ -211853,9 +186856,9 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c3" + "0x70a08231", + "0xa0", + "0xc3" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -211864,10 +186867,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 195, @@ -211876,8 +186876,8 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xa0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -211886,10 +186886,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 196, @@ -211898,8 +186895,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xa0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -211908,10 +186905,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 198, @@ -211920,9 +186914,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0xa0", + "0x40" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -211931,10 +186925,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 199, @@ -211943,9 +186934,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0xa0", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -211954,10 +186945,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 200, @@ -211966,10 +186954,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0xa0", + "0x80", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -211978,10 +186966,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 201, @@ -211990,10 +186975,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0x80", + "0x80", + "0xa0" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -212002,10 +186987,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 202, @@ -212014,9 +186996,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x80", + "0x20" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -212025,10 +187007,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 203, @@ -212037,9 +187016,9 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 4, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x20", + "0x80" ], "memory": [ "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", @@ -212048,10 +187027,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2767, @@ -212060,23 +187036,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212093,10 +187069,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2768, @@ -212105,23 +187078,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212138,10 +187111,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2769, @@ -212150,24 +187120,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212184,10 +187154,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2770, @@ -212196,24 +187163,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212230,10 +187197,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2773, @@ -212242,25 +187206,25 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000adf" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x0", + "0x1", + "0xadf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212277,10 +187241,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2783, @@ -212289,23 +187250,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212322,10 +187283,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2784, @@ -212334,23 +187292,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212367,10 +187325,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2785, @@ -212379,22 +187334,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000188" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x188" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212411,10 +187366,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2786, @@ -212423,21 +187375,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212454,10 +187406,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2787, @@ -212466,20 +187415,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212496,10 +187445,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2788, @@ -212508,19 +187454,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212537,10 +187483,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2790, @@ -212549,20 +187492,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212579,10 +187522,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2791, @@ -212591,20 +187531,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212621,10 +187561,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2792, @@ -212633,21 +187570,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212664,10 +187601,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2794, @@ -212676,22 +187610,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212708,10 +187642,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2795, @@ -212720,23 +187651,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212753,10 +187684,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2796, @@ -212765,22 +187693,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212797,10 +187725,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2797, @@ -212809,22 +187734,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212841,10 +187766,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2800, @@ -212853,23 +187775,23 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000af5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20", + "0x1", + "0xaf5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212886,10 +187808,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2805, @@ -212898,21 +187817,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212929,10 +187848,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2806, @@ -212941,21 +187857,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -212972,10 +187888,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2807, @@ -212984,20 +187897,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213014,10 +187927,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2808, @@ -213026,20 +187936,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213056,10 +187966,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2809, @@ -213068,20 +187975,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213098,10 +188005,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2810, @@ -213110,19 +188014,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213139,10 +188043,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2812, @@ -213151,20 +188052,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213181,10 +188082,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2813, @@ -213193,20 +188091,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213223,10 +188121,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2814, @@ -213235,19 +188130,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213264,10 +188159,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2815, @@ -213276,18 +188168,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213304,10 +188196,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2830, @@ -213316,19 +188205,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213345,10 +188234,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2831, @@ -213357,20 +188243,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0xffffffffffffffffffffffffffff", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213387,10 +188273,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2832, @@ -213399,19 +188282,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213428,10 +188311,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2833, @@ -213440,20 +188320,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x4c860714d6e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213470,10 +188350,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2834, @@ -213482,20 +188359,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213512,10 +188389,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2835, @@ -213524,19 +188398,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213553,10 +188427,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2836, @@ -213565,20 +188436,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x4c860714d6e", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213595,10 +188466,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2837, @@ -213607,19 +188475,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213636,10 +188504,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2840, @@ -213648,20 +188513,20 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000b1f" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x1", + "0xb1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213678,10 +188543,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2847, @@ -213690,18 +188552,18 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213718,10 +188580,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2848, @@ -213730,18 +188589,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213758,10 +188617,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2849, @@ -213770,19 +188626,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213799,10 +188655,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2850, @@ -213811,20 +188664,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213841,10 +188694,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2865, @@ -213853,21 +188703,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x0", + "0x4c860714d6e", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213884,10 +188734,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2866, @@ -213896,20 +188743,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213926,10 +188773,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2867, @@ -213938,19 +188782,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -213967,10 +188811,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2868, @@ -213979,20 +188820,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x4c860714d6e", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214009,10 +188850,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2869, @@ -214021,19 +188859,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214050,10 +188888,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2870, @@ -214062,19 +188897,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x0", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214091,10 +188926,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2871, @@ -214103,19 +188935,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214132,10 +188964,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2872, @@ -214144,18 +188973,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214172,10 +189001,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2874, @@ -214184,19 +189010,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214213,10 +189039,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2875, @@ -214225,20 +189048,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214255,10 +189078,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2876, @@ -214267,21 +189087,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214298,10 +189118,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2891, @@ -214310,22 +189127,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214342,10 +189159,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2892, @@ -214354,21 +189168,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214385,10 +189199,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2893, @@ -214397,20 +189208,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214427,10 +189238,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2894, @@ -214439,21 +189247,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x3d12be22e33902da0414f8da3ec", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214470,10 +189278,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2895, @@ -214482,20 +189287,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214512,10 +189317,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2898, @@ -214524,21 +189326,21 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000b59" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xb59" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214555,10 +189357,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2899, @@ -214567,19 +189366,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214596,10 +189395,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2901, @@ -214608,20 +189404,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214638,10 +189434,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2904, @@ -214650,21 +189443,21 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000b6f" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xb6f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214681,10 +189474,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2927, @@ -214693,20 +189483,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214723,10 +189513,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2928, @@ -214735,20 +189522,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214765,10 +189552,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2929, @@ -214777,20 +189561,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214807,10 +189591,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2930, @@ -214819,19 +189600,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214848,10 +189629,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2932, @@ -214860,20 +189638,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214890,10 +189668,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2933, @@ -214902,21 +189677,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214933,10 +189708,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2934, @@ -214945,20 +189717,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -214975,10 +189747,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2935, @@ -214987,21 +189756,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215018,10 +189787,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2938, @@ -215030,22 +189796,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000b80" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x1", + "0x1", + "0xb80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215062,10 +189828,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2944, @@ -215074,20 +189837,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215104,10 +189867,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2945, @@ -215116,20 +189876,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215146,10 +189906,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 2948, @@ -215158,21 +189915,21 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000bd5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x1", + "0xbd5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215189,10 +189946,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3029, @@ -215201,19 +189955,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215230,10 +189984,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3030, @@ -215242,19 +189993,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215271,10 +190022,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3032, @@ -215283,20 +190031,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215313,10 +190061,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3035, @@ -215325,21 +190070,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215356,10 +190101,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3038, @@ -215368,22 +190110,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215400,10 +190142,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3039, @@ -215412,23 +190151,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215445,10 +190184,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3041, @@ -215457,24 +190193,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215491,10 +190227,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3046, @@ -215503,25 +190236,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215538,10 +190271,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3049, @@ -215550,28 +190280,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" - ], - "memory": [ + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xffffffff", + "0x21e8" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000164", @@ -215586,10 +190316,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3050, @@ -215598,25 +190325,25 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215633,10 +190360,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8680, @@ -215645,24 +190369,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215679,10 +190403,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8681, @@ -215691,24 +190412,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215725,10 +190446,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8683, @@ -215737,25 +190455,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215772,10 +190490,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8684, @@ -215784,26 +190499,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0x0", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215820,10 +190535,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8685, @@ -215832,26 +190544,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215868,10 +190580,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8686, @@ -215880,27 +190589,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215917,10 +190626,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8689, @@ -215929,28 +190635,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0x0", + "0x0", + "0x0", + "0x2203" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -215967,10 +190673,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8690, @@ -215979,26 +190682,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216015,10 +190718,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8691, @@ -216027,25 +190727,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216062,10 +190762,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8692, @@ -216074,24 +190771,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216108,10 +190805,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8693, @@ -216120,25 +190814,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216155,10 +190849,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8694, @@ -216167,26 +190858,26 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0x3", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216203,10 +190894,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8695, @@ -216215,25 +190903,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216250,10 +190938,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8696, @@ -216262,26 +190947,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216298,10 +190983,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8697, @@ -216310,27 +190992,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435", + "0x4234167", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216347,10 +191029,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8698, @@ -216359,28 +191038,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435", + "0x4234167", + "0x3", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216397,10 +191076,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8699, @@ -216409,29 +191085,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435", + "0x4234167", + "0x3", + "0xc69c435", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216448,10 +191124,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8702, @@ -216460,30 +191133,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000002200" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435", + "0x4234167", + "0x3", + "0xc69c435", + "0x3", + "0x2200" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216500,10 +191173,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8704, @@ -216512,28 +191182,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435", + "0x4234167", + "0x3", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216550,10 +191220,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8705, @@ -216562,28 +191229,28 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435", + "0x4234167", + "0x3", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216600,10 +191267,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8706, @@ -216612,27 +191276,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435", + "0x4234167", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216649,10 +191313,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8707, @@ -216661,26 +191322,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216697,10 +191358,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8708, @@ -216709,26 +191367,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216745,10 +191403,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8711, @@ -216757,27 +191412,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435", + "0x1", + "0xdf6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216794,10 +191449,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3574, @@ -216806,25 +191458,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216841,10 +191493,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3575, @@ -216853,25 +191502,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xbeb", + "0x4234167", + "0x3", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216888,10 +191537,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3576, @@ -216900,25 +191546,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000beb" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0x4234167", + "0x3", + "0xbeb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216935,10 +191581,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3577, @@ -216947,25 +191590,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbeb", + "0x3", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -216982,10 +191625,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3578, @@ -216994,24 +191634,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbeb", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217028,10 +191668,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3579, @@ -217040,23 +191677,23 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000beb" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbeb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217073,10 +191710,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3051, @@ -217085,22 +191719,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217117,10 +191751,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3052, @@ -217129,22 +191760,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217161,10 +191792,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3055, @@ -217173,23 +191801,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217206,10 +191834,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3056, @@ -217218,24 +191843,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217252,10 +191877,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3059, @@ -217264,25 +191886,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217299,10 +191921,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3064, @@ -217311,26 +191930,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217347,10 +191966,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3067, @@ -217359,27 +191975,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0xffffffff", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217396,10 +192012,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3068, @@ -217408,26 +192021,26 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217444,10 +192057,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8680, @@ -217456,25 +192066,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217491,10 +192101,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8681, @@ -217503,25 +192110,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217538,10 +192145,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8683, @@ -217550,26 +192154,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217586,10 +192190,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8684, @@ -217598,27 +192199,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x0", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217635,10 +192236,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8685, @@ -217647,27 +192245,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217684,10 +192282,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8686, @@ -217696,28 +192291,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217734,10 +192329,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8689, @@ -217746,29 +192338,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x2203" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217785,10 +192377,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8690, @@ -217797,27 +192386,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217834,10 +192423,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8691, @@ -217846,26 +192432,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217882,10 +192468,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8692, @@ -217894,25 +192477,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217929,10 +192512,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8693, @@ -217941,26 +192521,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -217977,10 +192557,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8694, @@ -217989,27 +192566,27 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x3e8", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218026,10 +192603,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8695, @@ -218038,26 +192612,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218074,10 +192648,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8696, @@ -218086,27 +192657,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218123,10 +192694,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8697, @@ -218135,28 +192703,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x4c864948ed5", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218173,10 +192741,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8698, @@ -218185,29 +192750,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218224,10 +192789,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8699, @@ -218236,30 +192798,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218276,10 +192838,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8702, @@ -218288,31 +192847,31 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000002200" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x3e8", + "0x2200" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218329,10 +192888,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8704, @@ -218341,29 +192897,29 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218380,10 +192936,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8705, @@ -218392,29 +192945,29 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218431,10 +192984,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8706, @@ -218443,28 +192993,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x4c864948ed5", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218481,10 +193031,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8707, @@ -218493,27 +193040,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218530,10 +193077,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8708, @@ -218542,27 +193086,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218579,10 +193123,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8711, @@ -218591,28 +193132,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008", + "0x1", + "0xdf6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218629,10 +193170,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3574, @@ -218641,26 +193179,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218677,10 +193215,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3575, @@ -218689,26 +193224,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000012aec8e44df008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0xbfd", + "0x4c864948ed5", + "0x3e8", + "0x12aec8e44df008" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218725,10 +193260,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3576, @@ -218737,26 +193269,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000bfd" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0x12aec8e44df008", + "0x4c864948ed5", + "0x3e8", + "0xbfd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218773,10 +193305,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3577, @@ -218785,26 +193314,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0x12aec8e44df008", + "0xbfd", + "0x3e8", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218821,10 +193350,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3578, @@ -218833,25 +193359,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0x12aec8e44df008", + "0xbfd", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218868,10 +193394,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3579, @@ -218880,24 +193403,24 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000000000000000bfd" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0x12aec8e44df008", + "0xbfd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -218914,10 +193437,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3069, @@ -218926,25 +193446,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008" - ], - "memory": [ + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0x12aec8e44df008" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000164", @@ -218959,10 +193479,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3070, @@ -218971,23 +193488,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0xc69c435", + "0x12aec8e44df008" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219004,10 +193521,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3071, @@ -219016,23 +193530,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219049,10 +193563,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3076, @@ -219061,24 +193572,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219095,10 +193606,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3079, @@ -219107,25 +193615,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "000000000000000000000000000000000000000000000000000000000000226e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0xffffffff", + "0x226e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219142,10 +193650,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3080, @@ -219154,24 +193659,24 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "000000000000000000000000000000000000000000000000000000000000226e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0x226e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219188,10 +193693,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8814, @@ -219200,23 +193702,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219233,10 +193735,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8815, @@ -219245,23 +193744,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219278,10 +193777,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8816, @@ -219290,24 +193786,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219324,10 +193820,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8817, @@ -219336,25 +193829,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0xc69c435", + "0x12aec8e44df008" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219371,10 +193864,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8818, @@ -219383,24 +193873,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219417,10 +193907,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8819, @@ -219429,25 +193916,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8e44df008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0x12aec8d7e42bd3", + "0x12aec8e44df008" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219464,10 +193951,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8820, @@ -219476,26 +193960,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0x12aec8d7e42bd3", + "0x12aec8e44df008", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219512,10 +193996,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8821, @@ -219524,25 +194005,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0x12aec8d7e42bd3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219559,10 +194040,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8822, @@ -219571,25 +194049,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0x12aec8d7e42bd3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219606,10 +194084,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8825, @@ -219618,26 +194093,26 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0x12aec8d7e42bd3", + "0x1", + "0xdf6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219654,10 +194129,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3574, @@ -219666,24 +194138,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219700,10 +194172,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3575, @@ -219712,24 +194181,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c09", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0xc09", + "0x12aec8e44df008", + "0xc69c435", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219746,10 +194215,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3576, @@ -219758,24 +194224,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8e44df008", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000000000000000c09" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0x12aec8d7e42bd3", + "0x12aec8e44df008", + "0xc69c435", + "0xc09" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219792,10 +194258,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3577, @@ -219804,24 +194267,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435", - "0000000000000000000000000000000000000000000000000012aec8e44df008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0x12aec8d7e42bd3", + "0xc09", + "0xc69c435", + "0x12aec8e44df008" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219838,10 +194301,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3578, @@ -219850,23 +194310,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000c09", - "000000000000000000000000000000000000000000000000000000000c69c435" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0x12aec8d7e42bd3", + "0xc09", + "0xc69c435" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219883,10 +194343,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3579, @@ -219895,22 +194352,22 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000c09" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0x12aec8d7e42bd3", + "0xc09" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219927,10 +194384,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3081, @@ -219939,21 +194393,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -219970,10 +194424,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3082, @@ -219982,21 +194433,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x0", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220013,10 +194464,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3083, @@ -220025,21 +194473,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220056,10 +194504,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3084, @@ -220068,20 +194513,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220098,10 +194543,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3086, @@ -220110,21 +194552,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220141,10 +194583,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3089, @@ -220153,22 +194592,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220185,10 +194624,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3092, @@ -220197,23 +194633,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220230,10 +194666,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3093, @@ -220242,24 +194675,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220276,10 +194709,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3095, @@ -220288,25 +194718,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220323,10 +194753,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3100, @@ -220335,26 +194762,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220371,10 +194798,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3103, @@ -220383,27 +194807,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0xffffffff", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220420,10 +194844,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3104, @@ -220432,26 +194853,26 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220468,10 +194889,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8680, @@ -220480,25 +194898,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220515,10 +194933,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8681, @@ -220527,25 +194942,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220562,10 +194977,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8683, @@ -220574,26 +194986,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220610,10 +195022,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8684, @@ -220622,27 +195031,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220659,10 +195068,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8685, @@ -220671,27 +195077,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220708,10 +195114,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8686, @@ -220720,28 +195123,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220758,10 +195161,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8689, @@ -220770,29 +195170,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x0", + "0x0", + "0x2203" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220809,10 +195209,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8690, @@ -220821,27 +195218,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220858,10 +195255,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8691, @@ -220870,26 +195264,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220906,10 +195300,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8692, @@ -220918,25 +195309,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -220953,10 +195344,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8693, @@ -220965,26 +195353,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221001,10 +195389,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8694, @@ -221013,27 +195398,27 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221050,10 +195435,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8695, @@ -221062,26 +195444,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221098,10 +195480,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8696, @@ -221110,27 +195489,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221147,10 +195526,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8697, @@ -221159,28 +195535,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x0", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221197,10 +195573,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8698, @@ -221209,29 +195582,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x0", + "0x3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221248,10 +195621,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8699, @@ -221260,30 +195630,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x0", + "0x3", + "0x0", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221300,10 +195670,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8702, @@ -221312,31 +195679,31 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000002200" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x0", + "0x3", + "0x0", + "0x3", + "0x2200" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221353,10 +195720,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8704, @@ -221365,29 +195729,29 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x0", + "0x3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221404,10 +195768,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8705, @@ -221416,29 +195777,29 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x0", + "0x3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221455,10 +195816,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8706, @@ -221467,28 +195825,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221505,10 +195863,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8707, @@ -221517,27 +195872,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221554,10 +195909,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8708, @@ -221566,27 +195918,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221603,10 +195955,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8711, @@ -221615,28 +195964,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0", + "0x1", + "0xdf6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221653,10 +196002,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3574, @@ -221665,26 +196011,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221701,10 +196047,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3575, @@ -221713,26 +196056,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xbeb", + "0x0", + "0x3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221749,10 +196092,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3576, @@ -221761,26 +196101,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000beb" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0x0", + "0x3", + "0xbeb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221797,10 +196137,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3577, @@ -221809,26 +196146,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbeb", + "0x3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221845,10 +196182,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3578, @@ -221857,25 +196191,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000beb", - "0000000000000000000000000000000000000000000000000000000000000003" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbeb", + "0x3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221892,10 +196226,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3579, @@ -221904,24 +196235,24 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000beb" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbeb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221938,10 +196269,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3051, @@ -221950,23 +196278,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -221983,10 +196311,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3052, @@ -221995,23 +196320,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222028,10 +196353,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3055, @@ -222040,24 +196362,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222074,10 +196396,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3056, @@ -222086,25 +196405,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222121,10 +196440,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3059, @@ -222133,26 +196449,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222169,10 +196485,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3064, @@ -222181,27 +196494,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222218,10 +196531,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3067, @@ -222230,28 +196540,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xffffffff", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222268,10 +196578,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3068, @@ -222280,27 +196587,27 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222317,10 +196624,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8680, @@ -222329,26 +196633,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222365,10 +196669,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8681, @@ -222377,26 +196678,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222413,10 +196714,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8683, @@ -222425,27 +196723,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222462,10 +196760,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8684, @@ -222474,28 +196769,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0x0", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222512,10 +196807,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8685, @@ -222524,28 +196816,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222562,10 +196854,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8686, @@ -222574,29 +196863,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222613,10 +196902,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8689, @@ -222625,30 +196911,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x2203" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222665,10 +196951,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8690, @@ -222677,28 +196960,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222715,10 +196998,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8691, @@ -222727,27 +197007,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222764,10 +197044,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8692, @@ -222776,26 +197053,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222812,10 +197089,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8693, @@ -222824,27 +197098,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222861,10 +197135,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8694, @@ -222873,28 +197144,28 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0x3e8", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222911,10 +197182,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8695, @@ -222923,27 +197191,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -222960,10 +197228,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8696, @@ -222972,28 +197237,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223010,10 +197275,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8697, @@ -223022,29 +197284,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223061,10 +197323,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8698, @@ -223073,30 +197332,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223113,10 +197372,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8699, @@ -223125,31 +197381,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223166,10 +197422,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8702, @@ -223178,32 +197431,32 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000002200" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x3e8", + "0x2200" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223220,10 +197473,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8704, @@ -223232,30 +197482,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223272,10 +197522,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8705, @@ -223284,30 +197531,30 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223324,10 +197571,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8706, @@ -223336,29 +197580,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x3d12be22e33902da0414f8da3ec", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223375,10 +197619,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8707, @@ -223387,28 +197628,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223425,10 +197666,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8708, @@ -223437,28 +197675,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223475,10 +197713,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8711, @@ -223487,29 +197722,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0", + "0x1", + "0xdf6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223526,10 +197761,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3574, @@ -223538,27 +197770,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223575,10 +197807,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3575, @@ -223587,27 +197816,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xbfd", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223624,10 +197853,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3576, @@ -223636,27 +197862,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000bfd" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0x3d12be22e33902da0414f8da3ec", + "0x3e8", + "0xbfd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223673,10 +197899,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3577, @@ -223685,27 +197908,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0xbfd", + "0x3e8", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223722,10 +197945,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3578, @@ -223734,26 +197954,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000bfd", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0xbfd", + "0x3e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223770,10 +197990,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3579, @@ -223782,25 +197999,25 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000bfd" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0xbfd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223817,10 +198034,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3069, @@ -223829,24 +198043,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223863,10 +198077,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3070, @@ -223875,24 +198086,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0x0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223909,10 +198120,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3071, @@ -223921,24 +198129,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -223955,10 +198163,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3076, @@ -223967,25 +198172,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224002,10 +198207,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3079, @@ -224014,26 +198216,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "000000000000000000000000000000000000000000000000000000000000226e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0xffffffff", + "0x226e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224050,10 +198252,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3080, @@ -224062,25 +198261,25 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000226e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0x226e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224097,10 +198296,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8814, @@ -224109,24 +198305,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224143,10 +198339,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8815, @@ -224155,24 +198348,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224189,10 +198382,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8816, @@ -224201,25 +198391,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224236,10 +198426,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8817, @@ -224248,26 +198435,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0x0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224284,10 +198471,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8818, @@ -224296,25 +198480,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224331,10 +198515,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8819, @@ -224343,26 +198524,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224379,10 +198560,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8820, @@ -224391,27 +198569,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0xee9136b84796b3239ff1ec14851e0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224428,10 +198606,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8821, @@ -224440,26 +198615,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224476,10 +198651,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8822, @@ -224488,26 +198660,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224524,10 +198696,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8825, @@ -224536,27 +198705,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0x1", + "0xdf6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224573,10 +198742,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3574, @@ -224585,25 +198751,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224620,10 +198786,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3575, @@ -224632,25 +198795,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xc21", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224667,10 +198830,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3576, @@ -224679,25 +198839,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000c21" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0xc21" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224714,10 +198874,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3577, @@ -224726,25 +198883,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0xc21", + "0x0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224761,10 +198918,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3578, @@ -224773,24 +198927,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c21", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0xc21", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224807,10 +198961,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3579, @@ -224819,23 +198970,23 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c21" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xee9136b84796b3239ff1ec14851e0", + "0xc21" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224852,10 +199003,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3105, @@ -224864,22 +199012,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224896,10 +199044,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3106, @@ -224908,22 +199053,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0x0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224940,10 +199085,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3107, @@ -224952,22 +199094,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -224984,10 +199126,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3108, @@ -224996,21 +199135,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225027,10 +199166,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3111, @@ -225039,22 +199175,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225071,10 +199207,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3115, @@ -225083,23 +199216,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225116,10 +199249,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3118, @@ -225128,24 +199258,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225162,10 +199292,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3133, @@ -225174,25 +199301,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225209,10 +199336,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3134, @@ -225221,26 +199345,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0xffffffffffffffffffffffffffff", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225257,10 +199381,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3135, @@ -225269,27 +199390,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0xffffffffffffffffffffffffffff", + "0x4c860714d6e", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225306,10 +199427,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3136, @@ -225318,26 +199436,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0xffffffffffffffffffffffffffff", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225354,10 +199472,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3137, @@ -225366,26 +199481,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225402,10 +199517,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3138, @@ -225414,27 +199526,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0xffffffffffffffffffffffffffff", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225451,10 +199563,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3139, @@ -225463,26 +199572,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225499,10 +199608,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3144, @@ -225511,27 +199617,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225548,10 +199654,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3147, @@ -225560,28 +199663,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0xffffffff", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225598,10 +199701,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3148, @@ -225610,27 +199710,27 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225647,10 +199747,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8680, @@ -225659,26 +199756,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225695,10 +199792,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8681, @@ -225707,28 +199801,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" - ], - "memory": [ + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000164", @@ -225743,10 +199837,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8683, @@ -225755,27 +199846,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225792,10 +199883,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8684, @@ -225804,28 +199892,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225842,10 +199930,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8685, @@ -225854,28 +199939,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225892,10 +199977,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8686, @@ -225904,29 +199986,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225943,10 +200025,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8689, @@ -225955,30 +200034,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0", + "0x0", + "0x2203" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -225995,10 +200074,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8690, @@ -226007,28 +200083,28 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226045,10 +200121,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8691, @@ -226057,27 +200130,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226094,10 +200167,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8692, @@ -226106,26 +200176,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226142,10 +200212,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8693, @@ -226154,27 +200221,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226191,10 +200258,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8694, @@ -226203,28 +200267,28 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226241,10 +200305,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8695, @@ -226253,27 +200314,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226290,10 +200351,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8696, @@ -226302,28 +200360,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226340,10 +200398,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8697, @@ -226352,29 +200407,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226391,10 +200446,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8698, @@ -226403,30 +200455,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226443,10 +200495,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8699, @@ -226455,31 +200504,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226496,10 +200545,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8702, @@ -226508,32 +200554,32 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000002200" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x3d12f2d086f66d08e020a261097", + "0x2200" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226550,10 +200596,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8704, @@ -226562,30 +200605,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226602,10 +200645,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8705, @@ -226614,30 +200654,30 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226654,10 +200694,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8706, @@ -226666,29 +200703,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x4c860714d6e", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226705,10 +200742,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8707, @@ -226717,28 +200751,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226755,10 +200789,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8708, @@ -226767,28 +200798,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226805,10 +200836,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8711, @@ -226817,29 +200845,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x1", + "0xdf6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226856,10 +200884,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3574, @@ -226868,27 +200893,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226905,10 +200930,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3575, @@ -226917,27 +200939,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0xc4d", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -226954,10 +200976,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3576, @@ -226966,27 +200985,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000c4d" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0xc4d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227003,10 +201022,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3577, @@ -227015,27 +201031,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xc4d", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227052,10 +201068,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3578, @@ -227064,26 +201077,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "0000000000000000000000000000000000000000000000000000000000000c4d", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xc4d", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227100,10 +201113,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3579, @@ -227112,25 +201122,25 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "0000000000000000000000000000000000000000000000000000000000000c4d" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xc4d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227147,10 +201157,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3149, @@ -227159,24 +201166,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227193,10 +201200,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3150, @@ -227205,24 +201209,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0xf4240", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227239,10 +201243,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3151, @@ -227251,24 +201252,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227285,10 +201286,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3156, @@ -227297,25 +201295,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227332,10 +201330,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3159, @@ -227344,26 +201339,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0xffffffff", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227380,10 +201375,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3160, @@ -227392,25 +201384,25 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227427,10 +201419,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8680, @@ -227439,24 +201428,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227473,10 +201462,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8681, @@ -227485,24 +201471,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227519,10 +201505,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8683, @@ -227531,25 +201514,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227566,10 +201549,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8684, @@ -227578,26 +201558,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000f4240" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x0", + "0xf4240" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227614,10 +201594,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8685, @@ -227626,26 +201603,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227662,10 +201639,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8686, @@ -227674,27 +201648,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227711,10 +201685,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8689, @@ -227723,28 +201694,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x0", + "0x0", + "0x0", + "0x2203" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227761,10 +201732,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8690, @@ -227773,26 +201741,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227809,10 +201777,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8691, @@ -227821,25 +201786,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227856,10 +201821,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8692, @@ -227868,24 +201830,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227902,10 +201864,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8693, @@ -227914,25 +201873,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000000000000000000000000000000000000f4240" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0xf4240" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227949,10 +201908,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8694, @@ -227961,26 +201917,26 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0xf4240", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -227997,10 +201953,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8695, @@ -228009,25 +201962,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228044,10 +201997,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8696, @@ -228056,26 +202006,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228092,10 +202042,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8697, @@ -228104,27 +202051,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228141,10 +202088,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8698, @@ -228153,28 +202097,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228191,10 +202135,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8699, @@ -228203,29 +202144,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000000000000000000000000000000000000f4240" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xf4240" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228242,10 +202183,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8702, @@ -228254,30 +202192,30 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000002200" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xf4240", + "0x2200" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228294,10 +202232,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8704, @@ -228306,28 +202241,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228344,10 +202279,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8705, @@ -228356,28 +202288,28 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228394,10 +202326,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8706, @@ -228406,27 +202335,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228443,10 +202372,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8707, @@ -228455,26 +202381,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228491,10 +202417,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8708, @@ -228503,26 +202426,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228539,10 +202462,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8711, @@ -228551,27 +202471,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x1", + "0xdf6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228588,10 +202508,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3574, @@ -228600,25 +202517,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228635,10 +202552,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3575, @@ -228647,25 +202561,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc59", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228682,10 +202596,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3576, @@ -228694,25 +202605,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2", - "00000000000000000000000000000000000000000000000000000000000f4240", - "0000000000000000000000000000000000000000000000000000000000000c59" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2", + "0xf4240", + "0xc59" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228729,10 +202640,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3577, @@ -228741,25 +202649,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240", - "00000000000000000000000000124199b17e99c0e5c4b2dae107b4ebc1ff8be2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc59", + "0xf4240", + "0x124199b17e99c0e5c4b2dae107b4ebc1ff8be2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228776,10 +202684,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3578, @@ -228788,24 +202693,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c59", - "00000000000000000000000000000000000000000000000000000000000f4240" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc59", + "0xf4240" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228822,10 +202727,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3579, @@ -228834,23 +202736,23 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c59" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc59" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228867,10 +202769,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3161, @@ -228879,22 +202778,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228911,10 +202810,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3162, @@ -228923,22 +202819,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -228955,10 +202851,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3165, @@ -228967,23 +202860,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229000,10 +202893,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3166, @@ -229012,24 +202902,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229046,10 +202936,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3167, @@ -229058,25 +202945,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229093,10 +202980,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3172, @@ -229105,26 +202989,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229141,10 +203025,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3175, @@ -229153,27 +203034,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xffffffff", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229190,10 +203071,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3176, @@ -229202,26 +203080,26 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000000000000000000000000000021e8" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x21e8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229238,10 +203116,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8680, @@ -229250,25 +203125,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229285,10 +203160,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8681, @@ -229297,25 +203169,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229332,10 +203204,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8683, @@ -229344,26 +203213,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229380,10 +203249,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8684, @@ -229392,27 +203258,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229429,10 +203295,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8685, @@ -229441,27 +203304,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229478,10 +203341,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8686, @@ -229490,33 +203350,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0x0", + "0x0" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", + "0000000000000000000000000000000000000000000000000000000000000164", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000019", "7472616e7366657228616464726573732c75696e743235362900000000000000", @@ -229528,10 +203388,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8689, @@ -229540,29 +203397,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002203" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0x0", + "0x0", + "0x2203" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229579,10 +203436,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8690, @@ -229591,27 +203445,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229628,10 +203482,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8691, @@ -229640,26 +203491,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229676,10 +203527,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8692, @@ -229688,25 +203536,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229723,10 +203571,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8693, @@ -229735,26 +203580,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229771,10 +203616,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8694, @@ -229783,27 +203625,27 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xee9136b84796b3239ff1ec14851e0", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229820,10 +203662,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8695, @@ -229832,26 +203671,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229868,10 +203707,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8696, @@ -229880,27 +203716,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229917,10 +203753,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8697, @@ -229929,28 +203762,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -229967,10 +203800,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8698, @@ -229979,29 +203809,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230018,10 +203848,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8699, @@ -230030,30 +203857,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230070,10 +203897,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8702, @@ -230082,31 +203906,31 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000002200" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0xee9136b84796b3239ff1ec14851e0", + "0x2200" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230123,10 +203947,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8704, @@ -230135,29 +203956,29 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230174,10 +203995,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8705, @@ -230186,29 +204004,29 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230225,10 +204043,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8706, @@ -230237,28 +204052,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0x12aec8d7e42bd3", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230275,10 +204090,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8707, @@ -230287,27 +204099,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230324,10 +204136,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8708, @@ -230336,27 +204145,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230373,10 +204182,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8711, @@ -230385,28 +204191,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000df6" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0x1", + "0xdf6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230423,10 +204229,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3574, @@ -230435,26 +204238,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230471,10 +204274,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3575, @@ -230483,26 +204283,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "0000000000000000000000000000000000000000000000000000000000000c69", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0xc69", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230519,10 +204319,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3576, @@ -230531,26 +204328,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000c69" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0xc69" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230567,10 +204364,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3577, @@ -230579,26 +204373,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000000000000000c69", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0xc69", + "0xee9136b84796b3239ff1ec14851e0", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230615,10 +204409,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3578, @@ -230627,25 +204418,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000000000000000c69", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0xc69", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230662,10 +204453,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3579, @@ -230674,24 +204462,24 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", - "0000000000000000000000000000000000000000000000000000000000000c69" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0", + "0xc69" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230708,10 +204496,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3177, @@ -230720,23 +204505,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230753,10 +204538,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3178, @@ -230765,23 +204547,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "000000000000000000000116917b6c9a0597a1fca21c542fd86260ed94313c80", - "000000000000000000000116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x116917b6c9a0597a1fca21c542fd86260ed94313c80", + "0x116917b6c9a0597a1fca21c5430194588fc7fdc1ba0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230798,10 +204580,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3179, @@ -230810,22 +204589,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230842,10 +204621,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3180, @@ -230854,22 +204630,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230886,10 +204662,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3183, @@ -230898,23 +204671,23 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000cd6" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0", + "0x1", + "0xcd6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230931,10 +204704,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3286, @@ -230943,21 +204713,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -230974,10 +204744,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3287, @@ -230986,21 +204753,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3", - "00000000000000000000000000000000000ee9136b84796b3239ff1ec14851e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3", + "0xee9136b84796b3239ff1ec14851e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231017,10 +204784,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3288, @@ -231029,20 +204793,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000012aec8d7e42bd3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x12aec8d7e42bd3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231059,10 +204823,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3289, @@ -231071,19 +204832,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231100,10 +204861,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3292, @@ -231112,20 +204870,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231142,10 +204900,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3293, @@ -231154,21 +204909,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231185,10 +204940,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3294, @@ -231197,22 +204949,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231229,10 +204981,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3295, @@ -231241,23 +204990,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231274,10 +205023,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3296, @@ -231286,24 +205032,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231320,10 +205066,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 3299, @@ -231332,25 +205075,25 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000022e0" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x22e0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231367,10 +205110,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8928, @@ -231379,24 +205119,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231413,10 +205153,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8929, @@ -231425,24 +205162,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231459,10 +205196,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8944, @@ -231471,25 +205205,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231506,10 +205240,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8945, @@ -231518,26 +205249,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231554,10 +205285,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8946, @@ -231566,25 +205294,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231601,10 +205329,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8947, @@ -231613,26 +205338,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231649,10 +205374,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8948, @@ -231661,26 +205383,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231697,10 +205419,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8949, @@ -231709,26 +205428,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231745,10 +205464,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8952, @@ -231757,27 +205473,27 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000230c" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1", + "0x0", + "0x230c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231794,10 +205510,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8953, @@ -231806,25 +205519,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231841,10 +205554,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8954, @@ -231853,24 +205563,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231887,10 +205597,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8969, @@ -231899,25 +205606,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231934,10 +205641,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8970, @@ -231946,26 +205650,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -231982,10 +205686,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8971, @@ -231994,25 +205695,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232029,10 +205730,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8972, @@ -232041,25 +205739,25 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232076,10 +205774,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8973, @@ -232088,25 +205783,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232123,10 +205818,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 8976, @@ -232135,26 +205827,26 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002377" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x1", + "0x2377" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232171,10 +205863,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 9079, @@ -232183,24 +205872,24 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232217,10 +205906,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 9080, @@ -232229,24 +205915,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232263,10 +205949,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 9600 }, { "pc": 9082, @@ -232275,25 +205958,25 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232315,7 +205998,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 9083, @@ -232324,25 +206008,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232359,12 +206043,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9088, @@ -232373,26 +206052,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232409,12 +206088,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9089, @@ -232423,27 +206097,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd08ac" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffff", + "0x62dd08ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232460,12 +206134,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9090, @@ -232474,28 +206143,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffff", + "0x62dd08ac", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232512,12 +206181,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9091, @@ -232526,27 +206190,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd08ac" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffff", + "0x62dd08ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232563,12 +206227,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9092, @@ -232577,27 +206236,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0xffffffff", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232614,12 +206273,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9122, @@ -232628,28 +206282,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000100000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0xffffffff", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0x100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232666,12 +206320,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9123, @@ -232680,28 +206329,28 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000100000000000000000000000000000000000000000000000000000000", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0xffffffff", + "0x100000000000000000000000000000000000000000000000000000000", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232718,12 +206367,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9124, @@ -232732,27 +206376,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0xffffffff", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232769,12 +206413,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9125, @@ -232783,28 +206422,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0xffffffff", + "0x62dd06b9", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232821,12 +206460,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9126, @@ -232835,27 +206469,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd06b9" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0xffffffff", + "0x62dd06b9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232872,12 +206506,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9127, @@ -232886,28 +206515,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd06b9", - "0000000000000000000000000000000000000000000000000000000062dd08ac" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0xffffffff", + "0x62dd06b9", + "0x62dd08ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -232924,12 +206553,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9128, @@ -232938,29 +206562,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000001f3" - ], - "memory": [ + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0xffffffff", + "0x1f3" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000164", @@ -232975,12 +206599,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9129, @@ -232989,27 +206608,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233026,12 +206645,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9130, @@ -233040,28 +206654,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xffffffff", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233078,12 +206692,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9131, @@ -233092,27 +206701,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233129,12 +206738,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9132, @@ -233143,27 +206747,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233180,12 +206784,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9133, @@ -233194,28 +206793,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233232,12 +206831,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9134, @@ -233246,28 +206840,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233284,12 +206878,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9135, @@ -233298,28 +206887,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233336,12 +206925,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9138, @@ -233350,29 +206934,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000023c7" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1", + "0x0", + "0x23c7" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233389,12 +206973,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9139, @@ -233403,27 +206982,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233440,12 +207019,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9140, @@ -233454,26 +207028,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233490,12 +207064,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9155, @@ -233504,27 +207073,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233541,12 +207110,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9156, @@ -233555,28 +207119,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xffffffffffffffffffffffffffff", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233593,12 +207157,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9157, @@ -233607,27 +207166,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233644,12 +207203,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9158, @@ -233658,27 +207212,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233695,12 +207249,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9159, @@ -233709,27 +207258,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233746,12 +207295,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9160, @@ -233760,27 +207304,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233797,12 +207341,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9161, @@ -233811,28 +207350,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233849,12 +207388,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9162, @@ -233863,28 +207397,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233901,12 +207435,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9165, @@ -233915,29 +207444,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000023e2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1", + "0x0", + "0x23e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -233954,12 +207483,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9166, @@ -233968,27 +207492,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234005,12 +207529,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9167, @@ -234019,26 +207538,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234055,12 +207574,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9182, @@ -234069,27 +207583,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234106,12 +207620,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9183, @@ -234120,28 +207629,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xffffffffffffffffffffffffffff", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234158,12 +207667,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9184, @@ -234172,27 +207676,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234209,12 +207713,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9185, @@ -234223,27 +207722,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234260,12 +207759,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9186, @@ -234274,27 +207768,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234311,12 +207805,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9187, @@ -234325,27 +207814,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234362,12 +207851,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9188, @@ -234376,27 +207860,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234413,12 +207897,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9191, @@ -234427,28 +207906,28 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002492" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x0", + "0x2492" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234465,12 +207944,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9192, @@ -234479,26 +207953,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234515,12 +207989,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9193, @@ -234529,27 +207998,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234566,12 +208035,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9198, @@ -234580,28 +208044,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234618,12 +208082,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9199, @@ -234632,27 +208091,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234669,12 +208128,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9202, @@ -234683,28 +208137,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234721,12 +208175,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9203, @@ -234735,29 +208184,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234774,12 +208223,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9206, @@ -234788,30 +208232,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x23fb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234828,12 +208272,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9207, @@ -234842,31 +208281,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x23fb", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234883,12 +208322,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9210, @@ -234897,32 +208331,32 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000002a57" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x23fb", + "0x3d12f2d086f66d08e020a261097", + "0x2a57" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234939,12 +208373,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10839, @@ -234953,31 +208382,31 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x23fb", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -234994,12 +208423,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10840, @@ -235008,31 +208432,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x23fb", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235049,12 +208473,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10855, @@ -235063,32 +208482,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x23fb", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235105,12 +208524,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10856, @@ -235119,31 +208533,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x23fb", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235160,12 +208574,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10872, @@ -235174,32 +208583,32 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000010000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x23fb", + "0x3d12f2d086f66d08e020a261097", + "0x10000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235216,12 +208625,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10873, @@ -235230,31 +208634,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000000023fb", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x23fb", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235271,12 +208675,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10874, @@ -235285,31 +208684,31 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000023fb" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x23fb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235326,12 +208725,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9211, @@ -235340,30 +208734,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235380,12 +208774,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9212, @@ -235394,30 +208783,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235434,12 +208823,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9241, @@ -235448,31 +208832,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235489,12 +208873,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9242, @@ -235503,30 +208882,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235543,12 +208922,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9243, @@ -235557,30 +208931,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235597,12 +208971,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9248, @@ -235611,31 +208980,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235652,12 +209021,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9251, @@ -235666,32 +209030,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000000002a7b" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0xffffffff", + "0x2a7b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235708,12 +209072,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9252, @@ -235722,31 +209081,31 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000002a7b" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x2a7b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235763,12 +209122,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10875, @@ -235777,30 +209131,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235817,12 +209171,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10876, @@ -235831,30 +209180,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235871,12 +209220,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10878, @@ -235885,31 +209229,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235926,12 +209270,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10893, @@ -235940,32 +209279,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -235982,12 +209321,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10894, @@ -235996,33 +209330,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0", + "0xffffffffffffffffffffffffffff", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236039,12 +209373,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10895, @@ -236053,32 +209382,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236095,12 +209424,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10924, @@ -236109,33 +209433,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0", + "0x4c860714d6e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236152,12 +209476,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10925, @@ -236166,34 +209485,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0", + "0x4c860714d6e", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236210,12 +209529,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10926, @@ -236224,33 +209538,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236267,12 +209581,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10927, @@ -236281,34 +209590,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236325,12 +209634,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10930, @@ -236339,35 +209643,35 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000002ab4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x2ab4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236384,12 +209688,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10932, @@ -236398,33 +209697,33 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236441,12 +209740,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10933, @@ -236455,33 +209749,33 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236498,12 +209792,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10934, @@ -236512,32 +209801,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002425", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2425", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236554,12 +209843,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10935, @@ -236568,32 +209852,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002425" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c860714d6e", + "0x0", + "0x2425" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236610,12 +209894,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10936, @@ -236624,32 +209903,32 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000003d12f2d086f66d08e020a2610970000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0x2425", + "0x4c860714d6e", + "0x0", + "0x3d12f2d086f66d08e020a2610970000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236666,12 +209945,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10937, @@ -236680,31 +209954,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0x2425", + "0x4c860714d6e", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236721,12 +209995,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10938, @@ -236735,30 +210004,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000002425", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0x2425", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236775,12 +210044,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10939, @@ -236789,29 +210053,29 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000002425" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0x2425" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236828,12 +210092,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9253, @@ -236842,28 +210101,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236880,12 +210139,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9254, @@ -236894,28 +210148,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236932,12 +210186,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9256, @@ -236946,29 +210195,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000000009" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0x9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -236985,12 +210234,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9257, @@ -236999,30 +210243,30 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000000000000000000000000000000000000000000000000000009" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0x9", + "0x9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237045,7 +210289,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 9258, @@ -237054,30 +210299,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0x9", + "0x65977b8108a84a221a1831f73710d13b886c8594c5c82086c2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237094,13 +210339,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9287, @@ -237109,31 +210348,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0x9", + "0x65977b8108a84a221a1831f73710d13b886c8594c5c82086c2", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237150,13 +210389,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9288, @@ -237165,31 +210398,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x9", + "0x65977b8108a84a221a1831f73710d13b886c8594c5c82086c2", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237206,13 +210439,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9289, @@ -237221,31 +210448,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x9", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0x65977b8108a84a221a1831f73710d13b886c8594c5c82086c2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237262,13 +210489,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9290, @@ -237277,31 +210498,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x65977b8108a84a221a1831f73710d13b886c8594c5c82086c2", + "0x9", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237318,13 +210539,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9291, @@ -237333,30 +210548,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x65977b8108a84a221a1831f73710d13b886c8594c5c82086c2", + "0x9", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237373,13 +210588,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9292, @@ -237388,30 +210597,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0x65977b8108a84a221a1831f73710d13b886c8594c5c82086c2", + "0x9", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237428,13 +210637,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9293, @@ -237443,30 +210646,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000009" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951", + "0x65977b8108a84a221a1831f73710d13b886c8594c5c82086c2", + "0x1f3", + "0x9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237483,13 +210686,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9294, @@ -237498,30 +210695,30 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000cc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x9", + "0x65977b8108a84a221a1831f73710d13b886c8594c5c82086c2", + "0x1f3", + "0xcc50c657221c46ca1910c0bc23ac6ccc3d5269cc4951" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237538,13 +210735,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9295, @@ -237553,29 +210744,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000009", - "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "0000000000000000018e41729bd77d1dfbeedba7aeb98918121b87a43932e8e3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x9", + "0x65977b8108a84a221a1831f73710d13b886c8594c5c82086c2", + "0x18e41729bd77d1dfbeedba7aeb98918121b87a43932e8e3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237592,13 +210783,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9296, @@ -237607,28 +210792,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000009", - "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x9", + "0x659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237645,13 +210830,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "0000000000000065977b8108a84a221a1831f73710d13b886c8594c5c82086c2", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9297, @@ -237660,28 +210839,28 @@ export const trace: any = JSON.parse(` "gasCost": 2900, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "0000000000000000000000000000000000000000000000000000000000000009" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", + "0x9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237704,7 +210883,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 9298, @@ -237713,26 +210893,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237749,13 +210929,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9303, @@ -237764,27 +210938,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237801,13 +210975,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9304, @@ -237816,28 +210984,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xffffffff", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237854,13 +211022,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9305, @@ -237869,27 +211031,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237906,13 +211068,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9308, @@ -237921,28 +211077,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -237959,13 +211115,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9309, @@ -237974,29 +211124,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238013,13 +211163,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9312, @@ -238028,30 +211172,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x23fb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238068,13 +211212,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9313, @@ -238083,31 +211221,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x23fb", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238124,13 +211262,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9316, @@ -238139,32 +211271,32 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000002a57" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x23fb", + "0x4c860714d6e", + "0x2a57" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238181,13 +211313,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10839, @@ -238196,31 +211322,31 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x23fb", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238237,13 +211363,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10840, @@ -238252,31 +211372,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x23fb", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238293,13 +211413,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10855, @@ -238308,32 +211422,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x23fb", + "0x4c860714d6e", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238350,13 +211464,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10856, @@ -238365,31 +211473,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x23fb", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238406,13 +211514,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10872, @@ -238421,32 +211523,32 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "0000000000000000000000000000000000010000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x23fb", + "0x4c860714d6e", + "0x10000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238463,13 +211565,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10873, @@ -238478,31 +211574,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000000023fb", - "00000000000000000000000004c860714d6e0000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x23fb", + "0x4c860714d6e0000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238519,13 +211615,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10874, @@ -238534,31 +211624,31 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000023fb" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e0000000000000000000000000000", + "0x23fb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238575,13 +211665,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9211, @@ -238590,30 +211674,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e0000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238630,13 +211714,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9212, @@ -238645,30 +211723,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e0000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238685,13 +211763,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9241, @@ -238700,31 +211772,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e0000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238741,13 +211813,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9242, @@ -238756,30 +211822,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e0000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238796,13 +211862,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9243, @@ -238811,30 +211871,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238851,13 +211911,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9248, @@ -238866,31 +211920,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -238907,13 +211961,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9251, @@ -238922,34 +211970,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000000002a7b" - ], - "memory": [ + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0xffffffff", + "0x2a7b" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000164", @@ -238964,13 +212012,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9252, @@ -238979,31 +212021,31 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000002a7b" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x2a7b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239020,13 +212062,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10875, @@ -239035,30 +212071,30 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239075,13 +212111,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10876, @@ -239090,30 +212120,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239130,13 +212160,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10878, @@ -239145,31 +212169,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239186,13 +212210,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10893, @@ -239201,32 +212219,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239243,13 +212261,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10894, @@ -239258,33 +212270,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0xffffffffffffffffffffffffffff", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239301,13 +212313,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10895, @@ -239316,32 +212322,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239358,13 +212364,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10924, @@ -239373,33 +212373,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239416,13 +212416,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10925, @@ -239431,34 +212425,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000004c860714d6e0000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x4c860714d6e0000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239475,13 +212469,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10926, @@ -239490,33 +212478,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e0000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239533,13 +212521,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10927, @@ -239548,34 +212530,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239592,13 +212574,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10930, @@ -239607,35 +212583,35 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000002ab4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x2ab4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239652,13 +212628,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10932, @@ -239667,33 +212637,33 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e0000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239710,13 +212680,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10933, @@ -239725,33 +212689,33 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "00000000000000000000000004c860714d6e0000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x3d12f2d086f66d08e020a261097", + "0x4c860714d6e0000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239768,13 +212732,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10934, @@ -239783,32 +212741,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000140c23fba9122" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x2465", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x140c23fba9122" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239825,13 +212783,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10935, @@ -239840,32 +212792,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "00000000000000000000000004c860714d6e0000000000000000000000000000", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000002465" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x140c23fba9122", + "0x4c860714d6e0000000000000000000000000000", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x2465" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239882,13 +212834,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10936, @@ -239897,32 +212843,32 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000004c860714d6e0000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x140c23fba9122", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x0", + "0x4c860714d6e0000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239939,13 +212885,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10937, @@ -239954,31 +212894,31 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x140c23fba9122", + "0x2465", + "0x3d12f2d086f66d08e020a261097", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -239995,13 +212935,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10938, @@ -240010,30 +212944,30 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000000000000000002465", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x140c23fba9122", + "0x2465", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240050,13 +212984,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 10939, @@ -240065,29 +212993,29 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000000000000000002465" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x140c23fba9122", + "0x2465" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240104,13 +213032,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9317, @@ -240119,28 +213041,28 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x140c23fba9122" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240157,13 +213079,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9318, @@ -240172,28 +213088,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x140c23fba9122" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240210,13 +213126,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9320, @@ -240225,29 +213135,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "000000000000000000000000000000000000000000000000000000000000000a" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x140c23fba9122", + "0xa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240264,13 +213174,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9321, @@ -240279,30 +213183,30 @@ export const trace: any = JSON.parse(` "gasCost": 2100, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x140c23fba9122", + "0xa", + "0xa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240326,7 +213230,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 9322, @@ -240335,30 +213240,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000b2e718e62033158f23" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x140c23fba9122", + "0xa", + "0xb2e718e62033158f23" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240375,14 +213280,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9351, @@ -240391,31 +213289,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0x140c23fba9122", + "0xa", + "0xb2e718e62033158f23", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240432,14 +213330,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9352, @@ -240448,31 +213339,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000140c23fba9122" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xa", + "0xb2e718e62033158f23", + "0x140c23fba9122" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240489,14 +213380,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9353, @@ -240505,31 +213389,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000b2e718e62033158f23" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xa", + "0x140c23fba9122", + "0xb2e718e62033158f23" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240546,14 +213430,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9354, @@ -240562,31 +213439,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xb2e718e62033158f23", + "0xa", + "0x140c23fba9122", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240603,14 +213480,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9355, @@ -240619,30 +213489,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000140c23fba9122" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1f3", + "0xb2e718e62033158f23", + "0xa", + "0x140c23fba9122" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240659,14 +213529,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9356, @@ -240675,30 +213538,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x140c23fba9122", + "0xb2e718e62033158f23", + "0xa", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240715,14 +213578,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9357, @@ -240731,30 +213587,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000000000000000a" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x140c23fba9122", + "0xb2e718e62033158f23", + "0x1f3", + "0xa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240771,14 +213627,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9358, @@ -240787,30 +213636,30 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000140c23fba9122" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xa", + "0xb2e718e62033158f23", + "0x1f3", + "0x140c23fba9122" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240827,14 +213676,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9359, @@ -240843,29 +213685,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "00000000000000000000000000000000000000000000000002713aa238a8e546" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xa", + "0xb2e718e62033158f23", + "0x2713aa238a8e546" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240882,14 +213724,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9360, @@ -240898,28 +213733,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xa", + "0xb2e98a20c26bbe7469" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240936,14 +213771,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e718e62033158f23", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9361, @@ -240952,28 +213780,28 @@ export const trace: any = JSON.parse(` "gasCost": 2900, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000a" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0xb2e98a20c26bbe7469", + "0xa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -240997,7 +213825,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 9362, @@ -241006,26 +213835,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241042,14 +213871,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9363, @@ -241058,26 +213880,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241094,14 +213916,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9365, @@ -241110,27 +213925,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241147,14 +213962,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9366, @@ -241163,28 +213971,28 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "0000000000000000000000000000000000000000000000000000000000000008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0x8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241208,7 +214016,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 9367, @@ -241217,28 +214026,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241255,14 +214064,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9400, @@ -241271,29 +214073,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "ffffffffffffffffffffffffffffffffffff0000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", + "0xffffffffffffffffffffffffffffffffffff0000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241310,14 +214112,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9401, @@ -241326,28 +214121,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0x62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241364,14 +214159,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9416, @@ -241380,29 +214168,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0x62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241419,14 +214207,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9417, @@ -241435,30 +214216,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0x62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", + "0xffffffffffffffffffffffffffff", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241475,14 +214256,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9418, @@ -241491,31 +214265,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0x62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", + "0xffffffffffffffffffffffffffff", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241532,14 +214306,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9419, @@ -241548,30 +214315,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0x62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", + "0xffffffffffffffffffffffffffff", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241588,14 +214355,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9420, @@ -241604,30 +214364,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0x4c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241644,14 +214404,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9421, @@ -241660,30 +214413,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0x4c864948ed5", + "0x62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241700,14 +214453,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9422, @@ -241716,30 +214462,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x62dd06b903d12f2d086f66d08e020a2610970000000000000000000000000000", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241756,14 +214502,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9423, @@ -241772,29 +214511,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241811,14 +214550,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9456, @@ -241827,30 +214559,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b903d12f2d086f66d08e020a261097000000000000000004c864948ed5", - "ffffffff0000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x62dd06b903d12f2d086f66d08e020a261097000000000000000004c864948ed5", + "0xffffffff0000000000000000000000000000ffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241867,14 +214599,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9457, @@ -241883,29 +214608,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x62dd06b90000000000000000000000000000000000000000000004c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241922,14 +214647,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9473, @@ -241938,30 +214656,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x62dd06b90000000000000000000000000000000000000000000004c864948ed5", + "0x10000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -241978,14 +214696,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9474, @@ -241994,31 +214705,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x62dd06b90000000000000000000000000000000000000000000004c864948ed5", + "0x10000000000000000000000000000", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242035,14 +214746,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9475, @@ -242051,32 +214755,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x62dd06b90000000000000000000000000000000000000000000004c864948ed5", + "0x10000000000000000000000000000", + "0x3d12be22e33902da0414f8da3ec", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242093,14 +214797,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9476, @@ -242109,31 +214806,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x62dd06b90000000000000000000000000000000000000000000004c864948ed5", + "0x10000000000000000000000000000", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242150,14 +214847,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9477, @@ -242166,32 +214856,32 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000010000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x62dd06b90000000000000000000000000000000000000000000004c864948ed5", + "0x10000000000000000000000000000", + "0x3d12be22e33902da0414f8da3ec", + "0x10000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242208,14 +214898,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9478, @@ -242224,31 +214907,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec0000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x62dd06b90000000000000000000000000000000000000000000004c864948ed5", + "0x10000000000000000000000000000", + "0x3d12be22e33902da0414f8da3ec0000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242265,14 +214948,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9479, @@ -242281,31 +214957,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000003d12be22e33902da0414f8da3ec0000000000000000000000000000", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x3d12be22e33902da0414f8da3ec0000000000000000000000000000", + "0x10000000000000000000000000000", + "0x62dd06b90000000000000000000000000000000000000000000004c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242322,14 +214998,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9480, @@ -242338,31 +215007,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000003d12be22e33902da0414f8da3ec0000000000000000000000000000", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000010000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x3d12be22e33902da0414f8da3ec0000000000000000000000000000", + "0x62dd06b90000000000000000000000000000000000000000000004c864948ed5", + "0x10000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242379,14 +215048,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9481, @@ -242395,31 +215057,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd06b90000000000000000000000000000000000000000000004c864948ed5", - "0000000003d12be22e33902da0414f8da3ec0000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x62dd06b90000000000000000000000000000000000000000000004c864948ed5", + "0x3d12be22e33902da0414f8da3ec0000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242436,14 +215098,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9482, @@ -242452,30 +215107,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd06b903d12be22e33902da0414f8da3ec000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x62dd06b903d12be22e33902da0414f8da3ec000000000000000004c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242492,14 +215147,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9511, @@ -242508,31 +215156,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd06b903d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x62dd06b903d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242549,14 +215197,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9512, @@ -242565,30 +215206,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x3d12be22e33902da0414f8da3ec000000000000000004c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242605,14 +215246,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9542, @@ -242621,31 +215255,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000100000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x3d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0x100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242662,14 +215296,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9547, @@ -242678,32 +215305,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000100000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x3d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0x100000000000000000000000000000000000000000000000000000000", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242720,14 +215347,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9548, @@ -242736,33 +215356,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000100000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000062dd08ac" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x3d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0x100000000000000000000000000000000000000000000000000000000", + "0xffffffff", + "0x62dd08ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242779,14 +215399,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9549, @@ -242795,32 +215408,32 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000100000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000062dd08ac" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x3d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0x100000000000000000000000000000000000000000000000000000000", + "0x62dd08ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242837,14 +215450,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9550, @@ -242853,31 +215459,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000003d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "62dd08ac00000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x3d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0x62dd08ac00000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242894,14 +215500,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9551, @@ -242910,30 +215509,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000008", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x8", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -242950,14 +215549,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9552, @@ -242966,30 +215558,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243006,14 +215598,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9553, @@ -243022,31 +215607,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000008", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x8", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243063,14 +215648,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd06b903d12f2d086f66d08e020a261097000000000000000004c860714d6e", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9554, @@ -243079,31 +215657,31 @@ export const trace: any = JSON.parse(` "gasCost": 2900, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000008" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0x8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243127,7 +215705,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + }, + "refund": 9600 }, { "pc": 9555, @@ -243136,29 +215715,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243175,14 +215754,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9557, @@ -243191,30 +215763,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243231,14 +215803,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9558, @@ -243247,31 +215812,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243288,14 +215853,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9559, @@ -243304,31 +215862,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243345,14 +215903,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9560, @@ -243361,32 +215912,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x40", + "0x164", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243403,14 +215954,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9561, @@ -243419,33 +215963,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x40", + "0x164", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243462,14 +216006,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9562, @@ -243478,32 +216015,32 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x40", + "0x164", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243520,14 +216057,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9563, @@ -243536,33 +216066,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x40", + "0x164", + "0x4c864948ed5", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243579,14 +216109,7 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec7c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9564, @@ -243595,31 +216118,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x10000000000000000000000000000", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243636,14 +216159,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9565, @@ -243652,31 +216168,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000010000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x164", + "0x40", + "0x10000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243693,14 +216209,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9566, @@ -243709,31 +216218,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000010000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", + "0xffffffffffffffffffffffffffff", + "0x164", + "0x10000000000000000000000000000", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243750,14 +216259,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9567, @@ -243766,31 +216268,31 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000010000000000000000000000000000", - "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x40", + "0xffffffffffffffffffffffffffff", + "0x164", + "0x10000000000000000000000000000", + "0x62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243807,14 +216309,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9568, @@ -243823,30 +216318,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000000062dd08ac03d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x40", + "0xffffffffffffffffffffffffffff", + "0x164", + "0x62dd08ac03d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243863,14 +216358,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9569, @@ -243879,30 +216367,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000062dd08ac03d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x40", + "0xffffffffffffffffffffffffffff", + "0x62dd08ac03d12be22e33902da0414f8da3ec", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243919,14 +216407,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9570, @@ -243935,30 +216416,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000000062dd08ac03d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x40", + "0x164", + "0x62dd08ac03d12be22e33902da0414f8da3ec", + "0xffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -243975,14 +216456,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9571, @@ -243991,29 +216465,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x40", + "0x164", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244030,14 +216504,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9573, @@ -244046,30 +216513,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x40", + "0x164", + "0x3d12be22e33902da0414f8da3ec", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244086,14 +216553,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9574, @@ -244102,31 +216562,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x40", + "0x164", + "0x3d12be22e33902da0414f8da3ec", + "0x20", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244143,14 +216603,7 @@ export const trace: any = JSON.parse(` "00000001000000000000000000000000000000000000000000000000000004c8", "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9575, @@ -244159,30 +216612,30 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000184" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x40", + "0x164", + "0x3d12be22e33902da0414f8da3ec", + "0x184" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244197,17 +216650,9 @@ export const trace: any = JSON.parse(` "ba986cab00000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", "00000001000000000000000000000000000000000000000000000000000004c8", - "64948ed57c2e411e000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "64948ed57c2e411e000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9576, @@ -244216,28 +216661,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244255,14 +216700,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9577, @@ -244271,29 +216709,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x40", + "0x164", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244311,14 +216749,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9578, @@ -244327,29 +216758,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x40", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244367,14 +216798,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9611, @@ -244383,30 +216807,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x40", + "0x164", + "0x164", + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244424,14 +216848,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9612, @@ -244440,30 +216857,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", + "0x164", + "0x164", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244481,14 +216898,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9613, @@ -244497,30 +216907,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", + "0x40", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244538,14 +216948,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9614, @@ -244554,31 +216957,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", + "0x40", + "0x164", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244596,14 +216999,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9615, @@ -244612,31 +217008,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", + "0x40", + "0x164", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244654,14 +217050,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9616, @@ -244670,30 +217059,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", + "0x40", + "0x164", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244711,14 +217100,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9617, @@ -244727,30 +217109,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", + "0x40", + "0x0", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244768,14 +217150,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9618, @@ -244784,30 +217159,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", + "0x164", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244825,14 +217200,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9619, @@ -244841,31 +217209,31 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", + "0x164", + "0x40" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000164", @@ -244881,14 +217249,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9620, @@ -244897,29 +217258,29 @@ export const trace: any = JSON.parse(` "gasCost": 1262, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3", - "1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3", + "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244937,14 +217298,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9621, @@ -244953,26 +217307,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac", - "00000000000000000000000000000000000000000000000000000000000001f3" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac", + "0x1f3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -244990,14 +217344,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9622, @@ -245006,25 +217353,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "0000000000000000000000000000000000000000000000000000000062dd08ac" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x62dd08ac" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245042,14 +217389,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9623, @@ -245058,24 +217398,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245093,14 +217433,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9624, @@ -245109,23 +217442,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245143,14 +217476,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9625, @@ -245159,22 +217485,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245192,14 +217518,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9626, @@ -245208,21 +217527,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245240,14 +217559,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 9627, @@ -245256,20 +217568,20 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000ce4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xce4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245287,14 +217599,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3300, @@ -245303,19 +217608,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245333,14 +217638,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3301, @@ -245349,19 +217647,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245379,14 +217677,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3303, @@ -245395,20 +217686,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245426,14 +217717,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3304, @@ -245442,21 +217726,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245474,14 +217758,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3305, @@ -245490,21 +217767,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245522,14 +217799,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3306, @@ -245538,22 +217808,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245571,14 +217841,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3307, @@ -245587,23 +217850,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x4234167", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245621,14 +217884,7 @@ export const trace: any = JSON.parse(` "64948ed500000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3308, @@ -245637,21 +217893,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245669,14 +217925,7 @@ export const trace: any = JSON.parse(` "0423416700000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3310, @@ -245685,22 +217934,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245718,14 +217967,7 @@ export const trace: any = JSON.parse(` "0423416700000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3311, @@ -245734,23 +217976,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x20", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245768,14 +218010,7 @@ export const trace: any = JSON.parse(` "0423416700000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3312, @@ -245784,22 +218019,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000184" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x184" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245817,14 +218052,7 @@ export const trace: any = JSON.parse(` "0423416700000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3313, @@ -245833,23 +218061,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000184", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x184", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245867,14 +218095,7 @@ export const trace: any = JSON.parse(` "0423416700000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3314, @@ -245883,23 +218104,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000184" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x0", + "0x184" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245917,14 +218138,7 @@ export const trace: any = JSON.parse(` "0423416700000000000000000000000000000000000003d12be22e33902da041", "4f8da3ec00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3315, @@ -245933,21 +218147,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -245965,14 +218179,7 @@ export const trace: any = JSON.parse(` "0423416700000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3316, @@ -245981,22 +218188,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246014,14 +218221,7 @@ export const trace: any = JSON.parse(` "0423416700000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3317, @@ -246030,23 +218230,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x164", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246064,14 +218264,7 @@ export const trace: any = JSON.parse(` "0423416700000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3318, @@ -246080,22 +218273,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246113,14 +218306,7 @@ export const trace: any = JSON.parse(` "0423416700000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3319, @@ -246129,23 +218315,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x1a4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246163,14 +218349,7 @@ export const trace: any = JSON.parse(` "0423416700000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3320, @@ -246179,23 +218358,23 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x0", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246211,17 +218390,9 @@ export const trace: any = JSON.parse(` "0000002000000000000000000000000000000000000000000000000000000000", "0000000100000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3321, @@ -246230,21 +218401,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246263,14 +218434,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3323, @@ -246279,22 +218443,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246313,14 +218477,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3324, @@ -246329,23 +218486,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x60", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246364,14 +218521,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3325, @@ -246380,22 +218530,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000000000000000000000000000001c4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x1c4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246414,14 +218564,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3326, @@ -246430,23 +218573,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000000000000000000000000000000000000000001c4", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x1c4", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246465,14 +218608,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3327, @@ -246481,23 +218617,23 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000001c4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164", + "0x34ada3bd6a2edc0ba986cab", + "0x1c4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246514,17 +218650,9 @@ export const trace: any = JSON.parse(` "0000000100000000000000000000000000000000000000000000000000000000", "0423416700000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3328, @@ -246533,21 +218661,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x40", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246567,14 +218695,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3329, @@ -246583,21 +218704,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x164", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246617,14 +218738,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3330, @@ -246633,21 +218747,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246667,14 +218781,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3351, @@ -246683,22 +218790,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x164", + "0x164", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246718,14 +218825,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3352, @@ -246734,23 +218834,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x164", + "0x164", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246770,14 +218870,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3353, @@ -246786,22 +218879,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0x164", + "0x164", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246821,14 +218914,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3354, @@ -246837,22 +218923,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246872,14 +218958,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3355, @@ -246888,23 +218967,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x164", + "0x164", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246924,14 +219003,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3356, @@ -246940,23 +219012,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -246976,14 +219048,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3389, @@ -246992,24 +219057,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x164", + "0x164", + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247029,14 +219094,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3390, @@ -247045,24 +219103,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247082,14 +219140,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3391, @@ -247098,25 +219149,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x164", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247136,14 +219187,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3392, @@ -247152,25 +219196,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x164", + "0x164", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247190,14 +219234,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3393, @@ -247206,24 +219243,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x164", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247243,14 +219280,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3395, @@ -247259,25 +219289,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x164", + "0x0", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247297,14 +219327,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3396, @@ -247313,24 +219336,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x164", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247350,14 +219373,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3397, @@ -247366,24 +219382,24 @@ export const trace: any = JSON.parse(` "gasCost": 2524, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "d78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000164" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822", + "0x80", + "0x164" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247403,14 +219419,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3398, @@ -247419,19 +219428,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247451,14 +219460,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3399, @@ -247467,18 +219469,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247498,14 +219500,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3400, @@ -247514,17 +219509,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247544,14 +219539,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3402, @@ -247560,18 +219548,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247591,14 +219579,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000000" - } + "refund": 9600 }, { "pc": 3404, @@ -247607,19 +219588,19 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000000c" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec", + "0x1", + "0xc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247646,7 +219627,8 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + }, + "refund": 7600 }, { "pc": 3405, @@ -247655,17 +219637,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5", - "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5", + "0x3d12be22e33902da0414f8da3ec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247685,14 +219667,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 3406, @@ -247701,16 +219676,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097", - "000000000000000000000000000000000000000000000000000004c864948ed5" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097", + "0x4c864948ed5" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247730,14 +219705,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 3407, @@ -247746,15 +219714,15 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e", - "00000000000000000000000000000000000003d12f2d086f66d08e020a261097" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e", + "0x3d12f2d086f66d08e020a261097" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247774,14 +219742,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 3408, @@ -247790,14 +219751,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000004c860714d6e" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0", + "0x4c860714d6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247817,14 +219778,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 3409, @@ -247833,13 +219787,13 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247859,14 +219813,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 3410, @@ -247875,12 +219822,12 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247900,14 +219847,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 3411, @@ -247916,11 +219856,11 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247940,14 +219880,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 3412, @@ -247956,10 +219889,10 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x22c0d9f", + "0x257", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -247979,14 +219912,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 3413, @@ -247995,9 +219921,9 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x22c0d9f", + "0x257", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -248017,14 +219943,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 3414, @@ -248033,8 +219952,8 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000257" + "0x22c0d9f", + "0x257" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -248054,14 +219973,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 599, @@ -248070,7 +219982,7 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -248090,14 +220002,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 600, @@ -248106,7 +220011,7 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 3, "stack": [ - "00000000000000000000000000000000000000000000000000000000022c0d9f" + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -248126,14 +220031,7 @@ export const trace: any = JSON.parse(` "000000000000000000000000000000000000000000000000034ada3bd6a2edc0", "ba986cab00000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 12871, @@ -248142,33 +220040,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -248209,14 +220107,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 12872, @@ -248225,33 +220116,33 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -248292,14 +220183,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 12873, @@ -248308,34 +220192,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -248376,14 +220260,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 12874, @@ -248392,34 +220269,34 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -248460,14 +220337,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 12877, @@ -248476,933 +220346,35 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003257" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12887, - "op": "JUMPDEST", - "gas": 32307, - "gasCost": 1, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12888, - "op": "POP", - "gas": 32306, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12889, - "op": "POP", - "gas": 32304, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000482" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12890, - "op": "PUSH1", - "gas": 32302, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12892, - "op": "SWAP1", - "gas": 32299, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12893, - "op": "SWAP12", - "gas": 32296, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12894, - "op": "ADD", - "gas": 32293, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12895, - "op": "SWAP11", - "gas": 32290, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12896, - "op": "POP", - "gas": 32287, - "gasCost": 2, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "00000000000000000000000000000000000000000000000000000000022c0d9f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12897, - "op": "PUSH2", - "gas": 32285, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", - "b84189bd33ebe452000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", - "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "000000000000000000000000000000000000000000000000000000006423b872", - "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", - "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", - "1e00000000000000000000000000000000000000000000000000000000042341", - "6700000000000000000000000000000000000000000000000000000000000000", - "2000000000000000000000000000000000000000000000000000000000000000", - "0100000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", - "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", - "5200000000000000000000000000000000000000000000000000000000000000", - "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", - "63b84189bd33ebe4520000000000000000000000000000000000000000000000", - "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", - "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", - "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", - "00000000000000000000000000000000000000000000000004c860714d6e0000", - "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", - "000000000000000000000000000000000000000000000000000062dd06b90000", - "00000000000000000000000000000000000000000000000004c864948ed50000", - "000000000000000000000000000000000000000000000000000000000000022c", - "0d9f000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", - "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", - "98f2000000000000000000000000000000000000000000000000000000000000", - "0080000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } - }, - { - "pc": 12900, - "op": "SWAP10", - "gas": 32282, - "gasCost": 3, - "depth": 2, - "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000000002f6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0", + "0x1", + "0x3257" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -249443,47 +220415,42 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12901, - "op": "POP", - "gas": 32279, - "gasCost": 2, + "pc": 12887, + "op": "JUMPDEST", + "gas": 32307, + "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -249524,46 +220491,42 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12902, + "pc": 12888, "op": "POP", - "gas": 32277, + "gas": 32306, "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -249604,45 +220567,41 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12903, + "pc": 12889, "op": "POP", - "gas": 32275, + "gas": 32304, "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x482" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -249683,44 +220642,40 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12904, - "op": "POP", - "gas": 32273, - "gasCost": 2, + "pc": 12890, + "op": "PUSH1", + "gas": 32302, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -249761,43 +220716,41 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12905, - "op": "POP", - "gas": 32271, - "gasCost": 2, + "pc": 12892, + "op": "SWAP1", + "gas": 32299, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -249838,42 +220791,41 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12906, - "op": "POP", - "gas": 32269, - "gasCost": 2, + "pc": 12893, + "op": "SWAP12", + "gas": 32296, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -249914,41 +220866,41 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12907, - "op": "POP", - "gas": 32267, - "gasCost": 2, + "pc": 12894, + "op": "ADD", + "gas": 32293, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x22c0d9f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -249989,40 +220941,40 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12908, - "op": "POP", - "gas": 32265, - "gasCost": 2, + "pc": 12895, + "op": "SWAP11", + "gas": 32290, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "c053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x22c0d9f", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250063,39 +221015,40 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12909, + "pc": 12896, "op": "POP", - "gas": 32263, + "gas": 32287, "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x22c0d9f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250136,38 +221089,39 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12910, - "op": "POP", - "gas": 32261, - "gasCost": 2, + "pc": 12897, + "op": "PUSH2", + "gas": 32285, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250208,37 +221162,40 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12911, - "op": "JUMP", - "gas": 32259, - "gasCost": 8, + "pc": 12900, + "op": "SWAP10", + "gas": 32282, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002f6e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x2f6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250279,36 +221236,40 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12142, - "op": "JUMPDEST", - "gas": 32251, - "gasCost": 1, + "pc": 12901, + "op": "POP", + "gas": 32279, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x2f6e", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250349,36 +221310,39 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12143, - "op": "PUSH1", - "gas": 32250, - "gasCost": 3, + "pc": 12902, + "op": "POP", + "gas": 32277, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x2f6e", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x7a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250419,37 +221383,38 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12145, - "op": "DUP4", - "gas": 32247, - "gasCost": 3, + "pc": 12903, + "op": "POP", + "gas": 32275, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x2f6e", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250490,38 +221455,37 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12146, - "op": "MLOAD", - "gas": 32244, - "gasCost": 3, + "pc": 12904, + "op": "POP", + "gas": 32273, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x2f6e", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250562,38 +221526,36 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12147, - "op": "SUB", - "gas": 32241, - "gasCost": 3, + "pc": 12905, + "op": "POP", + "gas": 32271, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x2f6e", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250634,37 +221596,35 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12148, - "op": "DUP2", - "gas": 32238, - "gasCost": 3, + "pc": 12906, + "op": "POP", + "gas": 32269, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x2f6e", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250705,38 +221665,34 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12149, - "op": "LT", - "gas": 32235, - "gasCost": 3, + "pc": 12907, + "op": "POP", + "gas": 32267, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x2f6e", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250777,37 +221733,33 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12150, - "op": "ISZERO", - "gas": 32232, - "gasCost": 3, + "pc": 12908, + "op": "POP", + "gas": 32265, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x2f6e", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "0xc053daa38839cf24011497467a809081f991ecfe0ab2727c7e90d2ad7c2e411e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250848,37 +221800,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12151, - "op": "PUSH2", - "gas": 32229, - "gasCost": 3, + "pc": 12909, + "op": "POP", + "gas": 32263, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x2f6e", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250919,38 +221866,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 12154, - "op": "JUMPI", - "gas": 32226, - "gasCost": 10, + "pc": 12910, + "op": "POP", + "gas": 32261, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000146a" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x2f6e", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -250991,36 +221931,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 5226, - "op": "JUMPDEST", - "gas": 32216, - "gasCost": 1, + "pc": 12911, + "op": "JUMP", + "gas": 32259, + "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x2f6e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251061,36 +221995,29 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 5227, - "op": "POP", - "gas": 32215, - "gasCost": 2, + "pc": 12142, + "op": "JUMPDEST", + "gas": 32251, + "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251131,35 +222058,29 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 5228, - "op": "POP", - "gas": 32213, - "gasCost": 2, + "pc": 12143, + "op": "PUSH1", + "gas": 32250, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251200,34 +222121,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 5229, - "op": "POP", - "gas": 32211, - "gasCost": 2, + "pc": 12145, + "op": "DUP4", + "gas": 32247, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d", - "0000000000000000000000000000000000000000000000000000000000000221" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251268,33 +222185,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 5230, - "op": "JUMP", - "gas": 32209, - "gasCost": 8, + "pc": 12146, + "op": "MLOAD", + "gas": 32244, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000118d" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251335,32 +222250,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4493, - "op": "JUMPDEST", - "gas": 32201, - "gasCost": 1, + "pc": 12147, + "op": "SUB", + "gas": 32241, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251401,32 +222315,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4494, - "op": "PUSH2", - "gas": 32200, + "pc": 12148, + "op": "DUP2", + "gas": 32238, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251467,33 +222379,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4497, - "op": "DUP2", - "gas": 32197, + "pc": 12149, + "op": "LT", + "gas": 32235, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251534,35 +222444,95 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4498, - "op": "DUP8", - "gas": 32194, + "pc": 12150, + "op": "ISZERO", + "gas": 32232, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x0" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000", + "00000000000000000000000000000000000000000000000004c864948ed50000", + "000000000000000000000000000000000000000000000000000000000000022c", + "0d9f000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", + "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", + "98f2000000000000000000000000000000000000000000000000000000000000", + "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], + "refund": 7600 + }, + { + "pc": 12151, + "op": "PUSH2", + "gas": 32229, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -251602,35 +222572,94 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4499, - "op": "DUP8", - "gas": 32191, - "gasCost": 3, + "pc": 12154, + "op": "JUMPI", + "gas": 32226, + "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1", + "0x146a" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000", + "00000000000000000000000000000000000000000000000004c864948ed50000", + "000000000000000000000000000000000000000000000000000000000000022c", + "0d9f000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", + "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", + "98f2000000000000000000000000000000000000000000000000000000000000", + "0080000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 7600 + }, + { + "pc": 5226, + "op": "JUMPDEST", + "gas": 32216, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251671,36 +222700,29 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4500, - "op": "PUSH32", - "gas": 32188, - "gasCost": 3, + "pc": 5227, + "op": "POP", + "gas": 32215, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251741,37 +222763,28 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4533, - "op": "DUP2", - "gas": 32185, - "gasCost": 3, + "pc": 5228, + "op": "POP", + "gas": 32213, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251812,38 +222825,27 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4534, - "op": "ADD", - "gas": 32182, - "gasCost": 3, + "pc": 5229, + "op": "POP", + "gas": 32211, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d", + "0x221" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251884,37 +222886,85 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4535, - "op": "DUP2", - "gas": 32179, - "gasCost": 3, + "pc": 5230, + "op": "JUMP", + "gas": 32209, + "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x118d" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000", + "00000000000000000000000000000000000000000000000004c864948ed50000", + "000000000000000000000000000000000000000000000000000000000000022c", + "0d9f000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", + "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", + "98f2000000000000000000000000000000000000000000000000000000000000", + "0080000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 7600 + }, + { + "pc": 4493, + "op": "JUMPDEST", + "gas": 32201, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -251955,38 +223005,25 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4536, - "op": "DUP2", - "gas": 32176, + "pc": 4494, + "op": "PUSH2", + "gas": 32200, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252027,39 +223064,26 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4537, - "op": "LT", - "gas": 32173, + "pc": 4497, + "op": "DUP2", + "gas": 32197, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252100,38 +223124,27 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4538, - "op": "PUSH2", - "gas": 32170, + "pc": 4498, + "op": "DUP8", + "gas": 32194, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252172,39 +223185,28 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4541, - "op": "JUMPI", - "gas": 32167, - "gasCost": 10, + "pc": 4499, + "op": "DUP8", + "gas": 32191, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000011bf" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252245,37 +223247,29 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4543, - "op": "JUMPDEST", - "gas": 32157, - "gasCost": 1, + "pc": 4500, + "op": "PUSH32", + "gas": 32188, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252316,37 +223310,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4544, - "op": "SWAP1", - "gas": 32156, + "pc": 4533, + "op": "DUP2", + "gas": 32185, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x2", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252387,37 +223374,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4545, - "op": "POP", - "gas": 32153, - "gasCost": 2, + "pc": 4534, + "op": "ADD", + "gas": 32182, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x2", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252458,36 +223439,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4546, - "op": "PUSH1", - "gas": 32151, + "pc": 4535, + "op": "DUP2", + "gas": 32179, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252528,37 +223503,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4548, - "op": "MUL", - "gas": 32148, - "gasCost": 5, + "pc": 4536, + "op": "DUP2", + "gas": 32176, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x2", + "0x1", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252599,36 +223568,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4549, - "op": "ADD", - "gas": 32143, + "pc": 4537, + "op": "LT", + "gas": 32173, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x2", + "0x1", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252669,35 +223634,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4550, - "op": "PUSH1", - "gas": 32140, + "pc": 4538, + "op": "PUSH2", + "gas": 32170, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x2", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252738,36 +223699,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4552, - "op": "DUP2", - "gas": 32137, - "gasCost": 3, + "pc": 4541, + "op": "JUMPI", + "gas": 32167, + "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x2", + "0x1", + "0x1", + "0x11bf" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252808,37 +223765,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4553, - "op": "ADD", - "gas": 32134, - "gasCost": 3, + "pc": 4543, + "op": "JUMPDEST", + "gas": 32157, + "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252879,36 +223829,94 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4554, + "pc": 4544, "op": "SWAP1", - "gas": 32131, + "gas": 32156, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x2", + "0x1" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000", + "00000000000000000000000000000000000000000000000004c864948ed50000", + "000000000000000000000000000000000000000000000000000000000000022c", + "0d9f000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", + "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", + "98f2000000000000000000000000000000000000000000000000000000000000", + "0080000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 7600 + }, + { + "pc": 4545, + "op": "POP", + "gas": 32153, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x1", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -252949,36 +223957,93 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4555, - "op": "PUSH2", - "gas": 32128, + "pc": 4546, + "op": "PUSH1", + "gas": 32151, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x1" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000", + "00000000000000000000000000000000000000000000000004c864948ed50000", + "000000000000000000000000000000000000000000000000000000000000022c", + "0d9f000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", + "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", + "98f2000000000000000000000000000000000000000000000000000000000000", + "0080000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 7600 + }, + { + "pc": 4548, + "op": "MUL", + "gas": 32148, + "gasCost": 5, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253019,37 +224084,29 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4558, - "op": "SWAP2", - "gas": 32125, + "pc": 4549, + "op": "ADD", + "gas": 32143, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000011d4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xa4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253090,37 +224147,28 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4559, - "op": "SWAP1", - "gas": 32122, + "pc": 4550, + "op": "PUSH1", + "gas": 32140, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253161,37 +224209,29 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4560, - "op": "PUSH2", - "gas": 32119, + "pc": 4552, + "op": "DUP2", + "gas": 32137, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xc4", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253232,38 +224272,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4563, - "op": "JUMP", - "gas": 32116, - "gasCost": 8, + "pc": 4553, + "op": "ADD", + "gas": 32134, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000004feb" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xc4", + "0x20", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253304,37 +224336,29 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20459, - "op": "JUMPDEST", - "gas": 32108, - "gasCost": 1, + "pc": 4554, + "op": "SWAP1", + "gas": 32131, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xc4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253375,37 +224399,29 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20460, - "op": "PUSH1", - "gas": 32107, + "pc": 4555, + "op": "PUSH2", + "gas": 32128, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xe4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253446,38 +224462,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20462, - "op": "PUSH1", - "gas": 32104, + "pc": 4558, + "op": "SWAP2", + "gas": 32125, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xe4", + "0xc4", + "0x11d4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253518,39 +224526,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20464, - "op": "DUP3", - "gas": 32101, + "pc": 4559, + "op": "SWAP1", + "gas": 32122, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xc4", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253591,40 +224590,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20465, - "op": "DUP5", - "gas": 32098, + "pc": 4560, + "op": "PUSH2", + "gas": 32119, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253665,41 +224654,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20466, - "op": "SUB", - "gas": 32095, - "gasCost": 3, + "pc": 4563, + "op": "JUMP", + "gas": 32116, + "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x4feb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253740,40 +224719,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20467, - "op": "SLT", - "gas": 32092, - "gasCost": 3, + "pc": 20459, + "op": "JUMPDEST", + "gas": 32108, + "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253814,39 +224783,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20468, - "op": "ISZERO", - "gas": 32089, + "pc": 20460, + "op": "PUSH1", + "gas": 32107, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253887,39 +224847,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20469, - "op": "PUSH2", - "gas": 32086, + "pc": 20462, + "op": "PUSH1", + "gas": 32104, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -253960,40 +224912,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20472, - "op": "JUMPI", - "gas": 32083, - "gasCost": 10, + "pc": 20464, + "op": "DUP3", + "gas": 32101, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004ffc" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -254034,38 +224978,33 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20476, - "op": "JUMPDEST", - "gas": 32073, - "gasCost": 1, + "pc": 20465, + "op": "DUP5", + "gas": 32098, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0x20", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -254106,39 +225045,102 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20477, - "op": "DUP2", - "gas": 32072, + "pc": 20466, + "op": "SUB", + "gas": 32095, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0x20", + "0xc4", + "0xe4" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000", + "00000000000000000000000000000000000000000000000004c864948ed50000", + "000000000000000000000000000000000000000000000000000000000000022c", + "0d9f000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", + "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", + "98f2000000000000000000000000000000000000000000000000000000000000", + "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], + "refund": 7600 + }, + { + "pc": 20467, + "op": "SLT", + "gas": 32092, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0x20", + "0x20" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -254178,39 +225180,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20478, - "op": "CALLDATALOAD", - "gas": 32069, + "pc": 20468, + "op": "ISZERO", + "gas": 32089, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -254251,39 +225246,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20479, + "pc": 20469, "op": "PUSH2", - "gas": 32066, + "gas": 32086, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -254324,40 +225312,33 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20482, - "op": "DUP2", - "gas": 32063, - "gasCost": 3, + "pc": 20472, + "op": "JUMPI", + "gas": 32083, + "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0x1", + "0x4ffc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -254398,41 +225379,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20483, - "op": "PUSH2", - "gas": 32060, - "gasCost": 3, + "pc": 20476, + "op": "JUMPDEST", + "gas": 32073, + "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -254473,42 +225444,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20486, - "op": "JUMP", - "gas": 32057, - "gasCost": 8, + "pc": 20477, + "op": "DUP2", + "gas": 32072, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005f52" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -254549,41 +225509,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 24402, - "op": "JUMPDEST", - "gas": 32049, - "gasCost": 1, + "pc": 20478, + "op": "CALLDATALOAD", + "gas": 32069, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -254624,41 +225575,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 24403, - "op": "PUSH20", - "gas": 32048, + "pc": 20479, + "op": "PUSH2", + "gas": 32066, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -254699,42 +225641,33 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 24424, + "pc": 20482, "op": "DUP2", - "gas": 32045, + "gas": 32063, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -254775,43 +225708,34 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 24425, - "op": "AND", - "gas": 32042, + "pc": 20483, + "op": "PUSH2", + "gas": 32060, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -254852,42 +225776,103 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 24426, - "op": "DUP2", - "gas": 32039, - "gasCost": 3, + "pc": 20486, + "op": "JUMP", + "gas": 32057, + "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5f52" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000", + "00000000000000000000000000000000000000000000000004c864948ed50000", + "000000000000000000000000000000000000000000000000000000000000022c", + "0d9f000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", + "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", + "98f2000000000000000000000000000000000000000000000000000000000000", + "0080000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 7600 + }, + { + "pc": 24402, + "op": "JUMPDEST", + "gas": 32049, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -254928,43 +225913,34 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 24427, - "op": "EQ", - "gas": 32036, + "pc": 24403, + "op": "PUSH20", + "gas": 32048, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255005,42 +225981,35 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 24428, - "op": "PUSH2", - "gas": 32033, + "pc": 24424, + "op": "DUP2", + "gas": 32045, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255081,43 +226050,36 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 24431, - "op": "JUMPI", - "gas": 32030, - "gasCost": 10, + "pc": 24425, + "op": "AND", + "gas": 32042, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001479" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255158,41 +226120,35 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 5241, - "op": "JUMPDEST", - "gas": 32020, - "gasCost": 1, + "pc": 24426, + "op": "DUP2", + "gas": 32039, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255233,41 +226189,36 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 5242, - "op": "POP", - "gas": 32019, - "gasCost": 2, + "pc": 24427, + "op": "EQ", + "gas": 32036, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255308,40 +226259,35 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 5243, - "op": "JUMP", - "gas": 32017, - "gasCost": 8, + "pc": 24428, + "op": "PUSH2", + "gas": 32033, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000005007" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255382,39 +226328,36 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20487, - "op": "JUMPDEST", - "gas": 32009, - "gasCost": 1, + "pc": 24431, + "op": "JUMPI", + "gas": 32030, + "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x1", + "0x1479" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255455,39 +226398,34 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20488, - "op": "SWAP4", - "gas": 32008, - "gasCost": 3, + "pc": 5241, + "op": "JUMPDEST", + "gas": 32020, + "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255528,39 +226466,34 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20489, - "op": "SWAP3", - "gas": 32005, - "gasCost": 3, + "pc": 5242, + "op": "POP", + "gas": 32019, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000011d4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255601,39 +226534,33 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20490, - "op": "POP", - "gas": 32002, - "gasCost": 2, + "pc": 5243, + "op": "JUMP", + "gas": 32017, + "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x5007" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255674,39 +226601,99 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20491, - "op": "POP", - "gas": 32000, - "gasCost": 2, + "pc": 20487, + "op": "JUMPDEST", + "gas": 32009, + "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000c4", + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000", + "00000000000000000000000000000000000000000000000004c864948ed50000", + "000000000000000000000000000000000000000000000000000000000000022c", + "0d9f000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", + "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", + "98f2000000000000000000000000000000000000000000000000000000000000", + "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], + "refund": 7600 + }, + { + "pc": 20488, + "op": "SWAP4", + "gas": 32008, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x11d4", + "0xe4", + "0xc4", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -255746,37 +226733,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20492, - "op": "POP", - "gas": 31998, - "gasCost": 2, + "pc": 20489, + "op": "SWAP3", + "gas": 32005, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000011d4", - "00000000000000000000000000000000000000000000000000000000000000c4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xe4", + "0xc4", + "0x0", + "0x11d4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255817,36 +226799,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 20493, - "op": "JUMP", - "gas": 31996, - "gasCost": 8, + "pc": 20490, + "op": "POP", + "gas": 32002, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000011d4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x11d4", + "0xc4", + "0x0", + "0xe4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255887,35 +226865,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4564, - "op": "JUMPDEST", - "gas": 31988, - "gasCost": 1, + "pc": 20491, + "op": "POP", + "gas": 32000, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x11d4", + "0xc4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -255956,35 +226930,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4565, - "op": "PUSH20", - "gas": 31987, - "gasCost": 3, + "pc": 20492, + "op": "POP", + "gas": 31998, + "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x11d4", + "0xc4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256025,36 +226994,29 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4586, - "op": "AND", - "gas": 31984, - "gasCost": 3, + "pc": 20493, + "op": "JUMP", + "gas": 31996, + "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x11d4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256095,35 +227057,28 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4587, - "op": "PUSH4", - "gas": 31981, - "gasCost": 3, + "pc": 4564, + "op": "JUMPDEST", + "gas": 31988, + "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256164,36 +227119,28 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4592, - "op": "DUP8", - "gas": 31978, + "pc": 4565, + "op": "PUSH20", + "gas": 31987, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256234,37 +227181,29 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4593, - "op": "PUSH1", - "gas": 31975, + "pc": 4586, + "op": "AND", + "gas": 31984, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256305,38 +227244,28 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4595, - "op": "MLOAD", - "gas": 31972, + "pc": 4587, + "op": "PUSH4", + "gas": 31981, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256377,38 +227306,29 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4596, - "op": "DUP3", - "gas": 31969, + "pc": 4592, + "op": "DUP8", + "gas": 31978, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256449,39 +227369,30 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4597, - "op": "PUSH4", - "gas": 31966, + "pc": 4593, + "op": "PUSH1", + "gas": 31975, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256522,40 +227433,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4602, - "op": "AND", - "gas": 31963, + "pc": 4595, + "op": "MLOAD", + "gas": 31972, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000ffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256596,39 +227498,31 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4603, - "op": "PUSH1", - "gas": 31960, + "pc": 4596, + "op": "DUP3", + "gas": 31969, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256669,40 +227563,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4605, - "op": "SHL", - "gas": 31957, + "pc": 4597, + "op": "PUSH4", + "gas": 31966, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256743,39 +227629,33 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4606, - "op": "DUP2", - "gas": 31954, + "pc": 4602, + "op": "AND", + "gas": 31963, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "70a0823100000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x70a08231", + "0xffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256816,40 +227696,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4607, - "op": "MSTORE", - "gas": 31951, + "pc": 4603, + "op": "PUSH1", + "gas": 31960, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "70a0823100000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256890,38 +227762,33 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4608, - "op": "PUSH1", - "gas": 31948, + "pc": 4605, + "op": "SHL", + "gas": 31957, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x70a08231", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -256954,47 +227821,40 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000", "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000022c", + "0d9f000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4610, - "op": "ADD", - "gas": 31945, + "pc": 4606, + "op": "DUP2", + "gas": 31954, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x70a0823100000000000000000000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257027,46 +227887,41 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000", "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000022c", + "0d9f000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4611, - "op": "PUSH2", - "gas": 31942, + "pc": 4607, + "op": "MSTORE", + "gas": 31951, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x70a0823100000000000000000000000000000000000000000000000000000000", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257099,47 +227954,39 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", "000000000000000000000000000000000000000000000000000062dd06b90000", "00000000000000000000000000000000000000000000000004c864948ed50000", - "00000000000000000000000000000000000000000000000000000000000070a0", - "8231000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000022c", + "0d9f000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", "98f2000000000000000000000000000000000000000000000000000000000000", "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4614, - "op": "SWAP2", - "gas": 31939, + "pc": 4608, + "op": "PUSH1", + "gas": 31948, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000000000000000000000000000000000000000120c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257180,39 +228027,32 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4615, - "op": "SWAP1", - "gas": 31936, + "pc": 4610, + "op": "ADD", + "gas": 31945, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3de", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257253,39 +228093,97 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4616, + "pc": 4611, "op": "PUSH2", - "gas": 31933, + "gas": 31942, "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3e2" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000", + "00000000000000000000000000000000000000000000000004c864948ed50000", + "00000000000000000000000000000000000000000000000000000000000070a0", + "8231000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", + "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", + "98f2000000000000000000000000000000000000000000000000000000000000", + "0080000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 7600 + }, + { + "pc": 4614, + "op": "SWAP2", + "gas": 31939, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3e2", + "0x120c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257326,40 +228224,98 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 4619, - "op": "JUMP", - "gas": 31930, - "gasCost": 8, + "pc": 4615, + "op": "SWAP1", + "gas": 31936, + "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0x3e2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000005a3c" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000", + "00000000000000000000000000000000000000000000000004c864948ed50000", + "00000000000000000000000000000000000000000000000000000000000070a0", + "8231000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", + "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", + "98f2000000000000000000000000000000000000000000000000000000000000", + "0080000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 7600 + }, + { + "pc": 4616, + "op": "PUSH2", + "gas": 31933, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257400,39 +228356,99 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { - "pc": 23100, - "op": "JUMPDEST", - "gas": 31922, - "gasCost": 1, + "pc": 4619, + "op": "JUMP", + "gas": 31930, + "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3e2", + "0x5a3c" + ], + "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003de", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", + "0000000000000000000000000000000000000000000000000000000000000028", + "a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de263", + "b84189bd33ebe452000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff8010d", + "e71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "000000000000000000000000000000000000000000000000000000006423b872", + "dd000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998", + "f20000000000000000000000007a809081f991ecfe0ab2727c7e90d2ad7c2e41", + "1e00000000000000000000000000000000000000000000000000000000042341", + "6700000000000000000000000000000000000000000000000000000000000000", + "2000000000000000000000000000000000000000000000000000000000000000", + "0100000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2" + "02000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb", + "48000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe4", + "5200000000000000000000000000000000000000000000000000000000000000", + "28a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48f3b9569f82b18aef890de2", + "63b84189bd33ebe4520000000000000000000000000000000000000000000000", + "000000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff801", + "0de71f5f869456c97762a7269786bd9e00fbc7230ae5e3d18dc3aa2b877396e8", + "ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0000", + "00000000000000000000000000000000000000000000000004c860714d6e0000", + "0000000000000000000000000000000003d12f2d086f66d08e020a2610970000", + "000000000000000000000000000000000000000000000000000062dd06b90000", + "00000000000000000000000000000000000000000000000004c864948ed50000", + "00000000000000000000000000000000000000000000000000000000000070a0", + "8231000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000034ada3bd6a2edc0ba98", + "6cab000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f9", + "98f2000000000000000000000000000000000000000000000000000000000000", + "0080000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "refund": 7600 + }, + { + "pc": 23100, + "op": "JUMPDEST", + "gas": 31922, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257473,14 +228489,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 23101, @@ -257489,23 +228498,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257546,14 +228555,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 23122, @@ -257562,24 +228564,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3e2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257620,14 +228622,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 23123, @@ -257636,24 +228631,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x3e2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257694,14 +228689,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 23124, @@ -257710,24 +228698,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257768,14 +228756,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 23125, @@ -257784,24 +228765,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0x3e2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257842,14 +228823,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 23126, @@ -257858,23 +228832,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0x3e2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257915,14 +228889,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 23127, @@ -257931,24 +228898,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003e2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0x3e2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -257989,14 +228956,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 23128, @@ -258005,22 +228965,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003e2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0x3e2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258061,14 +229021,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 23130, @@ -258077,23 +229030,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "00000000000000000000000000000000000000000000000000000000000003e2", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0x3e2", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258134,14 +229087,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 23131, @@ -258150,22 +229096,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000120c", - "0000000000000000000000000000000000000000000000000000000000000402" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x120c", + "0x402" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258206,14 +229152,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 23132, @@ -258222,22 +229161,22 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "000000000000000000000000000000000000000000000000000000000000120c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x120c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258278,14 +229217,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4620, @@ -258294,21 +229226,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258349,14 +229281,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4621, @@ -258365,21 +229290,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258420,14 +229345,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4623, @@ -258436,22 +229354,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258492,14 +229410,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4625, @@ -258508,23 +229419,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258565,14 +229476,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4626, @@ -258581,23 +229485,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258638,14 +229542,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4627, @@ -258654,24 +229551,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258712,14 +229609,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4628, @@ -258728,25 +229618,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000402" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x3de", + "0x402" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258787,14 +229677,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4629, @@ -258803,24 +229686,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258861,14 +229744,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4630, @@ -258877,25 +229753,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -258936,14 +229812,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4631, @@ -258952,26 +229821,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24", + "0x3de", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -259012,14 +229881,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4632, @@ -259028,27 +229890,27 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24", + "0x3de", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -259089,14 +229951,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4633, @@ -259105,27 +229960,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "00000000000000000000000000000000000000000000000000000000000008e6" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24", + "0x3de", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x8e6" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -259166,14 +230021,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4634, @@ -259182,27 +230030,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24", + "0x3de", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -259243,14 +230091,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4635, @@ -259259,28 +230100,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24", + "0x3de", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -259321,14 +230162,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4636, @@ -259337,28 +230171,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24", + "0x3de", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -259399,14 +230233,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4639, @@ -259415,29 +230242,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001224" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24", + "0x3de", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0", + "0x1", + "0x1224" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -259478,14 +230305,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4644, @@ -259494,27 +230314,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24", + "0x3de", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -259555,14 +230375,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4645, @@ -259571,27 +230384,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24", + "0x3de", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -259632,14 +230445,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4646, @@ -259648,26 +230454,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24", + "0x3de", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -259708,14 +230514,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4647, @@ -259724,27 +230523,27 @@ export const trace: any = JSON.parse(` "gasCost": 31234, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000024", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000007bf0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x20", + "0x3de", + "0x24", + "0x3de", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x7bf0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -259785,14 +230584,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 0, @@ -259801,15 +230593,7 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2, @@ -259818,17 +230602,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" + "0x80" ], - "memory": [], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 4, @@ -259837,22 +230613,10 @@ export const trace: any = JSON.parse(` "gasCost": 12, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x80", + "0x40" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 5, @@ -259866,14 +230630,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 6, @@ -259882,21 +230639,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 7, @@ -259905,22 +230655,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 8, @@ -259929,22 +230672,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 11, @@ -259953,23 +230689,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010" + "0x0", + "0x1", + "0x10" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 16, @@ -259978,21 +230707,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 17, @@ -260001,21 +230723,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 18, @@ -260029,14 +230744,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 20, @@ -260045,21 +230753,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 21, @@ -260068,22 +230769,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 22, @@ -260092,21 +230786,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 25, @@ -260115,22 +230802,15 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a9" + "0x0", + "0xa9" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 26, @@ -260144,14 +230824,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 28, @@ -260160,21 +230833,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 29, @@ -260183,21 +230849,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "70a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" + "0x70a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 31, @@ -260206,22 +230865,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "70a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x70a08231000000000000000000000000ccde3781a1b463aab7c8480ccfa8daec", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 32, @@ -260230,21 +230882,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 33, @@ -260253,22 +230898,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 38, @@ -260277,23 +230915,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000039509351" + "0x70a08231", + "0x70a08231", + "0x39509351" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 39, @@ -260302,22 +230933,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 42, @@ -260326,23 +230950,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000071" + "0x70a08231", + "0x0", + "0x71" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 43, @@ -260351,21 +230968,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 44, @@ -260374,22 +230984,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 49, @@ -260398,23 +231001,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000039509351" + "0x70a08231", + "0x70a08231", + "0x39509351" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 50, @@ -260423,22 +231019,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 53, @@ -260447,23 +231036,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000145" + "0x70a08231", + "0x0", + "0x145" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 54, @@ -260472,21 +231054,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 55, @@ -260495,22 +231070,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 60, @@ -260519,23 +231087,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231", + "0x70a08231", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 61, @@ -260544,22 +231105,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 64, @@ -260568,23 +231122,16 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000158" + "0x70a08231", + "0x1", + "0x158" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 344, @@ -260593,21 +231140,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 345, @@ -260616,21 +231156,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 348, @@ -260639,22 +231172,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3" + "0x70a08231", + "0xf3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 351, @@ -260663,23 +231189,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166" + "0x70a08231", + "0xf3", + "0x166" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 352, @@ -260688,24 +231207,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0xf3", + "0x166", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 354, @@ -260714,25 +231226,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 357, @@ -260741,26 +231246,19 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000007fa" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x7fa" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2042, @@ -260769,25 +231267,18 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2043, @@ -260796,25 +231287,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2045, @@ -260823,26 +231307,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2047, @@ -260851,27 +231328,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2048, @@ -260880,28 +231350,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2049, @@ -260910,29 +231373,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2050, @@ -260941,28 +231397,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2051, @@ -260971,27 +231420,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2052, @@ -261000,27 +231442,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2055, @@ -261029,28 +231464,21 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000080c" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x1", + "0x80c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2060, @@ -261059,26 +231487,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2061, @@ -261087,26 +231508,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2064, @@ -261115,27 +231529,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2065, @@ -261144,28 +231551,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2068, @@ -261174,29 +231574,22 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000778" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x778" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1912, @@ -261205,28 +231598,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1913, @@ -261235,28 +231621,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1914, @@ -261265,29 +231644,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1915, @@ -261296,29 +231668,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1917, @@ -261327,30 +231692,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1919, @@ -261359,31 +231717,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1921, @@ -261392,32 +231743,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1922, @@ -261426,31 +231770,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1923, @@ -261459,30 +231796,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1924, @@ -261491,31 +231821,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1925, @@ -261524,30 +231847,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1926, @@ -261556,31 +231872,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1927, @@ -261589,30 +231898,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1930, @@ -261621,31 +231923,24 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000078f" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x78f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1935, @@ -261654,29 +231949,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1936, @@ -261685,29 +231973,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0x815", + "0x4", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1937, @@ -261716,29 +231997,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000815" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x4", + "0x815" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1938, @@ -261747,29 +232021,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000815", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x815", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 1939, @@ -261778,28 +232045,21 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000815" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x815" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2069, @@ -261808,27 +232068,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2070, @@ -261837,27 +232090,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x166", + "0x24", + "0x4", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2071, @@ -261866,27 +232112,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000166" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x24", + "0x4", + "0x0", + "0x166" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2072, @@ -261895,27 +232134,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x166", + "0x4", + "0x0", + "0x24" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2073, @@ -261924,26 +232156,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x166", + "0x4", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2074, @@ -261952,25 +232177,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166", - "0000000000000000000000000000000000000000000000000000000000000004" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x166", + "0x4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 2075, @@ -261979,24 +232197,17 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000166" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x166" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 358, @@ -262005,23 +232216,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 359, @@ -262030,23 +232234,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 361, @@ -262055,24 +232252,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 363, @@ -262081,25 +232271,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 365, @@ -262108,26 +232291,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 366, @@ -262136,25 +232312,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x1", + "0x10000000000000000000000000000000000000000" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 367, @@ -262163,24 +232332,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0xffffffffffffffffffffffffffffffffffffffff" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 368, @@ -262189,23 +232351,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 370, @@ -262214,24 +232369,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 371, @@ -262240,24 +232388,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x70a08231", + "0xf3", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 372, @@ -262266,25 +232407,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 373, @@ -262293,23 +232427,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 375, @@ -262318,24 +232445,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0xf3", + "0x0", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 376, @@ -262344,25 +232464,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0", + "0x20", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 377, @@ -262371,25 +232484,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0xf3", + "0x0", + "0x0", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 378, @@ -262398,23 +232504,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 380, @@ -262423,50 +232522,36 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0xf3", + "0x0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 381, - "op": "SHA3", + "op": "KECCAK256", "gas": 30783, "gasCost": 42, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x70a08231", + "0xf3", + "0x40", + "0x0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "0000000000000000000000000000000000000000000000000000000000000007": "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000000000008": "62dd08ac03d12be22e33902da0414f8da3ec000000000000000004c864948ed5", - "0000000000000000000000000000000000000000000000000000000000000009": "00000000000000659909c27b44219f381420d2debf8ac4a07ea11c6a01536fa5", - "000000000000000000000000000000000000000000000000000000000000000a": "0000000000000000000000000000000000000000000000b2e98a20c26bbe7469", - "000000000000000000000000000000000000000000000000000000000000000c": "0000000000000000000000000000000000000000000000000000000000000001" - } + "refund": 7600 }, { "pc": 382, @@ -262475,9 +232560,9 @@ export const trace: any = JSON.parse(` "gasCost": 100, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" + "0x70a08231", + "0xf3", + "0x3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262487,7 +232572,8 @@ export const trace: any = JSON.parse(` "storage": { "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + }, + "refund": 7600 }, { "pc": 383, @@ -262496,19 +232582,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x70a08231", + "0xf3", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 384, @@ -262517,19 +232600,16 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000000f3" + "0x70a08231", + "0x34ada3bd6a2edc0ba986cab", + "0xf3" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 243, @@ -262538,18 +232618,15 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x70a08231", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 244, @@ -262558,18 +232635,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x70a08231", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 246, @@ -262578,19 +232652,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0x34ada3bd6a2edc0ba986cab", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 247, @@ -262599,19 +232670,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x34ada3bd6a2edc0ba986cab", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 248, @@ -262620,19 +232688,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x70a08231", + "0x80", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 249, @@ -262641,22 +232706,17 @@ export const trace: any = JSON.parse(` "gasCost": 9, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80", + "0x34ada3bd6a2edc0ba986cab", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000080" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 250, @@ -262665,8 +232725,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262675,10 +232735,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 252, @@ -262687,9 +232744,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x80", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262698,10 +232755,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 253, @@ -262710,8 +232764,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262720,10 +232774,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 256, @@ -262732,9 +232783,9 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000c3" + "0x70a08231", + "0xa0", + "0xc3" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262743,10 +232794,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 195, @@ -262755,8 +232803,8 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262765,10 +232813,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 196, @@ -262777,8 +232822,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262787,10 +232832,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 198, @@ -262799,9 +232841,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x70a08231", + "0xa0", + "0x40" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262810,10 +232852,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 199, @@ -262822,9 +232861,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0xa0", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262833,10 +232872,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 200, @@ -262845,10 +232881,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0xa0", + "0x80", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262857,10 +232893,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 201, @@ -262869,10 +232902,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x70a08231", + "0x80", + "0x80", + "0xa0" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262881,10 +232914,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 202, @@ -262893,9 +232923,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x70a08231", + "0x80", + "0x20" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262904,10 +232934,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 203, @@ -262916,9 +232943,9 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 3, "stack": [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x70a08231", + "0x20", + "0x80" ], "memory": [ "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", @@ -262927,10 +232954,7 @@ export const trace: any = JSON.parse(` "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4648, @@ -262939,22 +232963,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -262995,10 +233019,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4649, @@ -263007,22 +233028,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263063,10 +233084,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4650, @@ -263075,23 +233093,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263132,10 +233150,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4651, @@ -263144,23 +233159,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263201,10 +233216,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4654, @@ -263213,24 +233225,24 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001238" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x0", + "0x1", + "0x1238" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263271,10 +233283,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4664, @@ -263283,22 +233292,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263339,10 +233348,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4665, @@ -263351,22 +233357,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263407,10 +233413,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4666, @@ -263419,21 +233422,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000402" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231", + "0x402" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263474,10 +233477,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4667, @@ -263486,20 +233486,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452", - "0000000000000000000000000000000000000000000000000000000070a08231" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452", + "0x70a08231" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263540,10 +233540,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4668, @@ -263552,19 +233549,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f3b9569f82b18aef890de263b84189bd33ebe452" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0xf3b9569f82b18aef890de263b84189bd33ebe452" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263605,10 +233602,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4669, @@ -263617,18 +233611,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263669,10 +233663,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4671, @@ -263681,19 +233672,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263734,10 +233725,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4672, @@ -263746,19 +233734,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263799,10 +233787,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4673, @@ -263811,20 +233796,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263865,10 +233850,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4675, @@ -263877,21 +233859,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263932,10 +233914,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4676, @@ -263944,21 +233923,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -263999,10 +233978,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4678, @@ -264011,22 +233987,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264067,10 +234043,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4679, @@ -264079,23 +234052,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264136,10 +234109,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4680, @@ -264148,22 +234118,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264204,10 +234174,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4681, @@ -264216,21 +234183,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264271,10 +234238,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4682, @@ -264283,22 +234247,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20", + "0x20", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264339,10 +234303,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4683, @@ -264351,21 +234312,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264406,10 +234367,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4684, @@ -264418,22 +234376,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20", + "0x3fe", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264474,10 +234432,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4686, @@ -264486,23 +234441,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20", + "0x3fe", + "0x3fe", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264543,10 +234498,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4687, @@ -264555,21 +234507,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264610,10 +234562,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4688, @@ -264622,20 +234571,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264676,10 +234625,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4689, @@ -264688,21 +234634,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x20", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264743,10 +234689,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4690, @@ -264755,20 +234698,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3de", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264809,10 +234752,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4691, @@ -264821,20 +234761,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3fe", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264875,10 +234815,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4694, @@ -264887,21 +234824,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "000000000000000000000000000000000000000000000000000000000000125c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x3fe", + "0x3de", + "0x125c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -264942,10 +234879,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4695, @@ -264954,21 +234888,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3de", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265009,10 +234943,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4696, @@ -265021,21 +234952,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265076,10 +235007,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4699, @@ -265088,22 +235016,22 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000057d3" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de", + "0x57d3" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265144,10 +235072,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22483, @@ -265156,21 +235081,21 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265211,10 +235136,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22484, @@ -265223,21 +235145,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265278,10 +235200,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22486, @@ -265290,22 +235209,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265346,10 +235265,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22488, @@ -265358,23 +235274,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265415,10 +235331,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22489, @@ -265427,24 +235340,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de", + "0x0", + "0x20", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265485,10 +235398,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22490, @@ -265497,25 +235407,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003de", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de", + "0x0", + "0x20", + "0x3de", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265556,10 +235466,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22491, @@ -265568,24 +235475,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de", + "0x0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265626,10 +235533,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22492, @@ -265638,23 +235542,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265695,10 +235599,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22493, @@ -265707,23 +235608,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265764,10 +235665,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22496, @@ -265776,24 +235674,24 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000057e4" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de", + "0x0", + "0x1", + "0x57e4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265834,10 +235732,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22500, @@ -265846,22 +235741,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265902,10 +235797,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22501, @@ -265914,22 +235806,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -265970,10 +235862,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22502, @@ -265982,21 +235871,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266037,10 +235926,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22503, @@ -266049,21 +235935,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x125c", + "0x3fe", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266104,10 +235990,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22504, @@ -266116,21 +235999,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe", - "000000000000000000000000000000000000000000000000000000000000125c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x3fe", + "0x125c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266171,10 +236054,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22505, @@ -266183,21 +236063,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000000000000125c", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x125c", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266238,10 +236118,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22506, @@ -266250,20 +236127,20 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "000000000000000000000000000000000000000000000000000000000000125c" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x125c" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266304,10 +236181,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4700, @@ -266316,19 +236190,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266369,10 +236243,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4701, @@ -266381,19 +236252,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266434,10 +236305,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4702, @@ -266446,19 +236314,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266499,10 +236367,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4705, @@ -266511,20 +236376,20 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003270" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x3270" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266565,10 +236430,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 12912, @@ -266577,19 +236439,19 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266630,10 +236492,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 12913, @@ -266642,19 +236501,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266695,10 +236554,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 12914, @@ -266707,20 +236563,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266761,10 +236617,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 12915, @@ -266773,21 +236626,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266828,10 +236681,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 12916, @@ -266840,20 +236690,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266894,10 +236744,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 12917, @@ -266906,21 +236753,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -266961,10 +236808,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 12918, @@ -266973,22 +236817,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x34ada3bd6a2edc0ba986cab", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267029,10 +236873,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 12919, @@ -267041,21 +236882,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267096,10 +236937,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 12920, @@ -267108,21 +236946,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267163,10 +237001,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 12923, @@ -267175,22 +237010,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002021" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x1", + "0x2021" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267231,10 +237066,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 8225, @@ -267243,20 +237075,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267297,10 +237129,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 8226, @@ -267309,20 +237138,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x1262", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267363,10 +237192,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 8227, @@ -267375,20 +237201,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001262" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x1262" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267429,10 +237255,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 8228, @@ -267441,20 +237264,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x1262", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267495,10 +237318,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 8229, @@ -267507,19 +237327,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000001262", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x1262", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267560,10 +237380,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 8230, @@ -267572,18 +237389,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000001262" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x1262" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267624,10 +237441,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4706, @@ -267636,17 +237450,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267687,10 +237501,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4707, @@ -267699,17 +237510,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x0", + "0x0", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267750,10 +237561,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4708, @@ -267762,17 +237570,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267813,10 +237621,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4709, @@ -267825,16 +237630,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267875,10 +237680,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4710, @@ -267887,17 +237689,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x34a6e670d07a930315acfa2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -267938,10 +237740,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4711, @@ -267950,18 +237749,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x34a6e670d07a930315acfa2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268002,10 +237801,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4712, @@ -268014,17 +237810,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268065,10 +237861,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4713, @@ -268077,17 +237870,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268128,10 +237921,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4716, @@ -268140,18 +237930,18 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000129e" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0", + "0x1", + "0x129e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268192,10 +237982,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4766, @@ -268204,16 +237991,16 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268254,10 +238041,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4767, @@ -268266,16 +238050,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268316,10 +238100,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4768, @@ -268328,15 +238109,15 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268377,10 +238158,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4769, @@ -268389,14 +238167,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x367", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268437,10 +238215,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4770, @@ -268449,14 +238224,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000004234167", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000000000367" + "0x472b43f3", + "0x34ada3bd6a2edc0ba986cab", + "0x4234167", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x367" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268497,10 +238272,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4771, @@ -268509,14 +238281,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2", - "0000000000000000000000000000000000000000000000000000000004234167" + "0x472b43f3", + "0x34ada3bd6a2edc0ba986cab", + "0x367", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2", + "0x4234167" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268557,10 +238329,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4772, @@ -268569,13 +238338,13 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000ccde3781a1b463aab7c8480ccfa8daecf0f998f2" + "0x472b43f3", + "0x34ada3bd6a2edc0ba986cab", + "0x367", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2", + "0xccde3781a1b463aab7c8480ccfa8daecf0f998f2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268616,10 +238385,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4773, @@ -268628,12 +238394,12 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002" + "0x472b43f3", + "0x34ada3bd6a2edc0ba986cab", + "0x367", + "0x34a6e670d07a930315acfa2", + "0xa4", + "0x2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268674,10 +238440,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4774, @@ -268686,11 +238449,11 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2", - "00000000000000000000000000000000000000000000000000000000000000a4" + "0x472b43f3", + "0x34ada3bd6a2edc0ba986cab", + "0x367", + "0x34a6e670d07a930315acfa2", + "0xa4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268731,10 +238494,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4775, @@ -268743,10 +238503,10 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000367", - "0000000000000000000000000000000000000000034a6e670d07a930315acfa2" + "0x472b43f3", + "0x34ada3bd6a2edc0ba986cab", + "0x367", + "0x34a6e670d07a930315acfa2" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268787,10 +238547,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 4776, @@ -268799,9 +238556,9 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000367" + "0x472b43f3", + "0x34ada3bd6a2edc0ba986cab", + "0x367" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268842,10 +238599,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 871, @@ -268854,8 +238608,8 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268896,10 +238650,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 872, @@ -268908,8 +238659,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -268950,10 +238701,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 874, @@ -268962,9 +238710,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x34ada3bd6a2edc0ba986cab", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269005,10 +238753,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 875, @@ -269017,9 +238762,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x34ada3bd6a2edc0ba986cab", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269060,10 +238805,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 878, @@ -269072,10 +238814,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000374" + "0x472b43f3", + "0x34ada3bd6a2edc0ba986cab", + "0x3fe", + "0x374" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269116,10 +238858,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 879, @@ -269128,10 +238867,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x374", + "0x3fe", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269172,10 +238911,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 880, @@ -269184,10 +238920,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x374", + "0x34ada3bd6a2edc0ba986cab", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269228,10 +238964,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 883, @@ -269240,11 +238973,11 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000005dfd" + "0x472b43f3", + "0x374", + "0x34ada3bd6a2edc0ba986cab", + "0x3fe", + "0x5dfd" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269285,10 +239018,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24061, @@ -269297,10 +239027,10 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x374", + "0x34ada3bd6a2edc0ba986cab", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269341,10 +239071,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24062, @@ -269353,10 +239080,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x374", + "0x34ada3bd6a2edc0ba986cab", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269397,10 +239124,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24063, @@ -269409,10 +239133,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x472b43f3", + "0x374", + "0x3fe", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269453,10 +239177,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24064, @@ -269465,11 +239186,11 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x374", + "0x3fe", + "0x34ada3bd6a2edc0ba986cab", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269510,10 +239231,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24065, @@ -269522,9 +239240,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x374", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269565,10 +239283,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24067, @@ -269577,10 +239292,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x374", + "0x3fe", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269621,10 +239336,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24068, @@ -269633,9 +239345,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000374", - "000000000000000000000000000000000000000000000000000000000000041e" + "0x472b43f3", + "0x374", + "0x41e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269676,10 +239388,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24069, @@ -269688,9 +239397,9 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000000000041e", - "0000000000000000000000000000000000000000000000000000000000000374" + "0x472b43f3", + "0x41e", + "0x374" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269731,10 +239440,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 884, @@ -269743,8 +239449,8 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000000000041e" + "0x472b43f3", + "0x41e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269785,10 +239491,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 885, @@ -269797,8 +239500,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000000000041e" + "0x472b43f3", + "0x41e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269839,10 +239542,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 887, @@ -269851,9 +239551,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000000000041e", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x472b43f3", + "0x41e", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269894,10 +239594,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 888, @@ -269906,9 +239603,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000000000041e", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x41e", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -269949,10 +239646,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 889, @@ -269961,10 +239655,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "000000000000000000000000000000000000000000000000000000000000041e", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x41e", + "0x3fe", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270005,10 +239699,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 890, @@ -270017,10 +239708,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000000003fe", - "00000000000000000000000000000000000000000000000000000000000003fe", - "000000000000000000000000000000000000000000000000000000000000041e" + "0x472b43f3", + "0x3fe", + "0x3fe", + "0x41e" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270061,10 +239752,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 891, @@ -270073,9 +239761,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "00000000000000000000000000000000000000000000000000000000000003fe", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x472b43f3", + "0x3fe", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270116,10 +239804,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 892, @@ -270128,9 +239813,9 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 2, "stack": [ - "00000000000000000000000000000000000000000000000000000000472b43f3", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000003fe" + "0x472b43f3", + "0x20", + "0x3fe" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270171,10 +239856,7 @@ export const trace: any = JSON.parse(` "0080000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6738, @@ -270183,23 +239865,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45", - "00000000000000000000000000000000000000000000000000000000000001a4", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "0x1a4", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270218,10 +239900,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6739, @@ -270230,23 +239909,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4", - "00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0x1a4", + "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270265,10 +239944,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6740, @@ -270277,22 +239953,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a4" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0x1a4" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270311,10 +239987,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6741, @@ -270323,21 +239996,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270356,10 +240029,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6742, @@ -270368,22 +240038,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270402,10 +240072,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6743, @@ -270414,23 +240081,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270449,10 +240116,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6745, @@ -270461,24 +240125,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270497,10 +240161,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6746, @@ -270509,25 +240170,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270546,10 +240207,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6747, @@ -270558,24 +240216,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270594,10 +240252,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6750, @@ -270606,25 +240261,25 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000001a80" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20", + "0x0", + "0x1a80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270643,10 +240298,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6751, @@ -270654,24 +240306,24 @@ export const trace: any = JSON.parse(` "gas": 33053, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "stack": [ + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270690,10 +240342,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6753, @@ -270702,24 +240351,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270738,10 +240387,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6754, @@ -270750,24 +240396,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0x20", + "0x20", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270786,10 +240432,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6755, @@ -270798,24 +240441,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270834,10 +240477,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6756, @@ -270846,23 +240486,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270881,10 +240521,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6758, @@ -270893,24 +240530,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270929,10 +240566,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6759, @@ -270941,24 +240575,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -270977,10 +240611,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6761, @@ -270989,25 +240620,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271026,10 +240657,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6762, @@ -271038,26 +240666,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000003f", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271076,10 +240704,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6763, @@ -271088,25 +240713,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000005f" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x5f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271125,10 +240750,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6764, @@ -271137,24 +240759,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271173,10 +240795,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6765, @@ -271185,25 +240804,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x40", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271222,10 +240841,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6766, @@ -271234,24 +240850,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271270,10 +240886,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6768, @@ -271282,25 +240895,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x100", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271319,10 +240932,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6769, @@ -271331,23 +240941,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271366,10 +240976,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6770, @@ -271378,24 +240985,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271414,10 +241021,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6771, @@ -271426,25 +241030,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x20", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271463,10 +241067,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6772, @@ -271475,23 +241076,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271510,10 +241111,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6773, @@ -271522,24 +241120,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271558,10 +241156,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6775, @@ -271570,25 +241165,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271607,10 +241202,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6777, @@ -271619,26 +241211,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x20", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271657,10 +241249,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6778, @@ -271669,27 +241258,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x20", + "0x0", + "0x20", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271708,10 +241297,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6779, @@ -271720,26 +241306,26 @@ export const trace: any = JSON.parse(` "gasCost": 6, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x20", + "0x0", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271758,10 +241344,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6780, @@ -271770,23 +241353,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271805,10 +241388,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6783, @@ -271817,24 +241397,24 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000001a85" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20", + "0x1a85" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271853,10 +241433,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6789, @@ -271865,23 +241442,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271900,10 +241477,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6790, @@ -271912,23 +241486,23 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271947,10 +241521,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6791, @@ -271959,22 +241530,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0x0", + "0x1", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -271993,10 +241564,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6792, @@ -272005,22 +241573,22 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0xc0", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272039,10 +241607,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6793, @@ -272051,21 +241616,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x0", + "0xc0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272084,10 +241649,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6794, @@ -272096,21 +241658,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272129,10 +241691,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6795, @@ -272141,20 +241700,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272173,10 +241732,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6796, @@ -272185,21 +241741,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272218,10 +241774,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6799, @@ -272230,22 +241783,22 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001aeb" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0x1", + "0x1aeb" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272264,10 +241817,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6891, @@ -272276,20 +241826,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272308,10 +241858,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6892, @@ -272320,20 +241867,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272352,10 +241899,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6893, @@ -272364,21 +241908,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272397,10 +241941,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6894, @@ -272409,22 +241950,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272443,10 +241984,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6895, @@ -272455,23 +241993,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272490,10 +242028,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6896, @@ -272502,24 +242037,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80", + "0x0", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272538,10 +242073,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6897, @@ -272550,24 +242082,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272586,10 +242118,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6898, @@ -272598,25 +242127,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80", + "0x0", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272635,10 +242164,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6899, @@ -272647,24 +242173,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272683,10 +242209,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6902, @@ -272695,25 +242218,25 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001af8" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80", + "0x0", + "0x1", + "0x1af8" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272732,10 +242255,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6904, @@ -272744,23 +242264,23 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272779,10 +242299,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6905, @@ -272791,23 +242308,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272826,10 +242343,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6907, @@ -272838,24 +242352,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272874,10 +242388,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6908, @@ -272886,24 +242397,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272922,10 +242433,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6909, @@ -272934,25 +242442,25 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80", + "0x20", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -272971,10 +242479,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6910, @@ -272983,24 +242488,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x80", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273019,10 +242524,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6911, @@ -273031,24 +242533,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x0", + "0x20", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273067,10 +242569,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6912, @@ -273079,24 +242578,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x0", + "0x80", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273115,10 +242614,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6913, @@ -273127,24 +242623,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x20", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273163,10 +242659,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6914, @@ -273175,23 +242668,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0x20", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273210,10 +242703,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6915, @@ -273222,22 +242712,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0", + "0xc0", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273256,10 +242746,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6916, @@ -273268,20 +242755,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273300,10 +242787,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6917, @@ -273312,19 +242796,19 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273343,10 +242827,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6918, @@ -273355,18 +242836,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273385,10 +242866,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6920, @@ -273397,19 +242875,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273428,10 +242906,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6921, @@ -273440,18 +242915,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273470,10 +242945,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6924, @@ -273482,19 +242954,19 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001a0d" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x1", + "0x1a0d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273513,10 +242985,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6669, @@ -273525,18 +242994,18 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273555,10 +243024,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6670, @@ -273567,18 +243033,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273597,10 +243063,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6671, @@ -273609,19 +243072,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273640,10 +243103,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6672, @@ -273652,20 +243112,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x1", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273684,10 +243144,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6673, @@ -273696,19 +243153,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273727,10 +243184,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6674, @@ -273739,19 +243193,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273770,10 +243224,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6677, @@ -273782,20 +243233,20 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001b0d" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x1", + "0x1", + "0x1b0d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273814,10 +243265,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6925, @@ -273826,18 +243274,18 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273856,10 +243304,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6926, @@ -273868,18 +243313,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273898,10 +243343,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6927, @@ -273910,17 +243352,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0xc3d", + "0x64", + "0x1", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273939,10 +243381,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6928, @@ -273951,17 +243390,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000c3d" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x80", + "0x64", + "0x1", + "0xc3d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -273980,10 +243419,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6929, @@ -273992,17 +243428,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x80", + "0xc3d", + "0x1", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274021,10 +243457,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6930, @@ -274033,16 +243466,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000c3d", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x80", + "0xc3d", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274061,10 +243494,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 6931, @@ -274073,15 +243503,15 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000c3d" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x80", + "0xc3d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274100,10 +243530,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3133, @@ -274112,14 +243539,14 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274137,11 +243564,8 @@ export const trace: any = JSON.parse(` "3606eb48000000000000000000000000f3b9569f82b18aef890de263b84189bd", "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + ], + "refund": 7600 }, { "pc": 3134, @@ -274150,14 +243574,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x60", + "0x62dd0903", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274176,10 +243600,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3135, @@ -274188,14 +243609,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x80", + "0x62dd0903", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274214,10 +243635,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3136, @@ -274226,13 +243644,13 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd0903" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x80", + "0x62dd0903" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274251,10 +243669,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3137, @@ -274263,13 +243678,13 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd0903" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x80", + "0x62dd0903" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274288,10 +243703,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3138, @@ -274300,12 +243712,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x3de", + "0x62dd0903", + "0x64", + "0x1", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274324,10 +243736,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3139, @@ -274336,12 +243745,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000062dd0903", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x5ae401dc", + "0x80", + "0x62dd0903", + "0x64", + "0x1", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274360,10 +243769,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3140, @@ -274372,12 +243778,12 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000062dd0903" + "0x5ae401dc", + "0x80", + "0x3de", + "0x64", + "0x1", + "0x62dd0903" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274396,10 +243802,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3141, @@ -274408,11 +243811,11 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x80", + "0x3de", + "0x64", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274431,10 +243834,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3142, @@ -274443,10 +243843,10 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000003de", - "0000000000000000000000000000000000000000000000000000000000000064" + "0x5ae401dc", + "0x80", + "0x3de", + "0x64" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274465,10 +243865,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3143, @@ -274477,9 +243874,9 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000003de" + "0x5ae401dc", + "0x80", + "0x3de" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274498,10 +243895,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 990, @@ -274510,8 +243904,8 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274530,10 +243924,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 991, @@ -274542,8 +243933,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274562,10 +243953,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 993, @@ -274574,9 +243962,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x80", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274595,10 +243983,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 994, @@ -274607,9 +243992,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x80", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274628,10 +244013,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 997, @@ -274640,10 +244022,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000374" + "0x5ae401dc", + "0x80", + "0x100", + "0x374" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274662,10 +244044,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 998, @@ -274674,10 +244053,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x374", + "0x100", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274696,10 +244075,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 999, @@ -274708,10 +244084,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x374", + "0x80", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274730,10 +244106,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 1002, @@ -274742,11 +244115,11 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000005afc" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x5afc" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274765,10 +244138,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23292, @@ -274777,10 +244147,10 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x374", + "0x80", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274799,10 +244169,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23293, @@ -274811,10 +244178,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x374", + "0x80", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274833,10 +244200,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23295, @@ -274845,11 +244209,11 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274868,10 +244232,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23297, @@ -274880,12 +244241,12 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274904,10 +244265,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23298, @@ -274916,13 +244274,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274941,10 +244299,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23299, @@ -274953,14 +244308,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x20", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -274979,10 +244334,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23300, @@ -274991,13 +244343,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275016,10 +244368,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23301, @@ -275028,14 +244377,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275054,10 +244403,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23302, @@ -275066,15 +244412,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x20", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275093,10 +244439,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23303, @@ -275105,13 +244448,13 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275130,10 +244473,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23304, @@ -275142,14 +244482,14 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275168,10 +244508,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23305, @@ -275180,15 +244517,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x120", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275207,10 +244544,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23306, @@ -275219,15 +244553,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x120", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275246,10 +244580,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23307, @@ -275258,16 +244589,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x120", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275286,10 +244617,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23308, @@ -275298,17 +244626,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x120", + "0x1", + "0x1", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275327,10 +244655,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23309, @@ -275339,15 +244664,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x120", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275366,10 +244691,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23311, @@ -275378,16 +244700,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x120", + "0x1", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275406,10 +244728,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23312, @@ -275418,17 +244737,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x120", + "0x1", + "0x40", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275447,10 +244766,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23313, @@ -275459,16 +244775,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000140" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x120", + "0x1", + "0x140" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275487,10 +244803,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23314, @@ -275499,16 +244812,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x140", + "0x1", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275527,10 +244840,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23315, @@ -275539,15 +244849,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x140", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275566,10 +244876,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23317, @@ -275578,16 +244885,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x140", + "0x1", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275606,10 +244913,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23318, @@ -275618,17 +244922,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x140", + "0x1", + "0x40", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275647,10 +244951,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23319, @@ -275659,18 +244960,18 @@ export const trace: any = JSON.parse(` "gasCost": 5, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x140", + "0x1", + "0x40", + "0x20", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275689,10 +244990,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23320, @@ -275701,17 +244999,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x140", + "0x1", + "0x40", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275730,10 +245028,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23321, @@ -275742,18 +245037,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x140", + "0x1", + "0x40", + "0x20", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275772,10 +245067,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23322, @@ -275784,17 +245076,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x140", + "0x1", + "0x40", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275813,10 +245105,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23323, @@ -275825,16 +245114,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000160" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x120", + "0x140", + "0x1", + "0x160" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275853,10 +245142,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23324, @@ -275865,16 +245151,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000120" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0x120" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275893,10 +245179,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23325, @@ -275905,15 +245188,15 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275932,10 +245215,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23326, @@ -275944,16 +245224,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -275972,10 +245252,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23327, @@ -275984,17 +245261,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0x20", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276013,10 +245290,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23328, @@ -276025,16 +245299,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276053,10 +245327,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23329, @@ -276065,17 +245336,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276094,10 +245365,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23330, @@ -276106,17 +245374,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276135,10 +245403,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23331, @@ -276147,18 +245412,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276177,10 +245442,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23332, @@ -276189,19 +245451,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276220,10 +245482,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23333, @@ -276232,18 +245491,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276262,10 +245521,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23334, @@ -276274,18 +245530,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276304,10 +245560,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23337, @@ -276316,19 +245569,19 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b6d" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x0", + "0x5b6d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276347,10 +245600,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23338, @@ -276359,17 +245609,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276388,10 +245638,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23371, @@ -276400,18 +245647,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276430,10 +245677,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23372, @@ -276442,19 +245686,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276473,10 +245717,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23373, @@ -276485,20 +245726,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000160" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0", + "0x100", + "0x160" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276517,10 +245758,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23374, @@ -276529,19 +245767,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0", - "0000000000000000000000000000000000000000000000000000000000000060" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0", + "0x60" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276560,10 +245798,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23375, @@ -276572,18 +245807,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276602,10 +245837,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23376, @@ -276614,19 +245846,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000140" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x20", + "0x140" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276645,10 +245877,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23377, @@ -276657,17 +245886,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276686,10 +245915,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23380, @@ -276698,18 +245924,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276728,10 +245954,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23381, @@ -276740,19 +245963,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276771,10 +245994,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23382, @@ -276783,20 +246003,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276815,10 +246035,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23383, @@ -276827,20 +246044,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276859,10 +246076,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23386, @@ -276871,21 +246085,21 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000005950" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x5950" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276904,10 +246118,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22864, @@ -276916,20 +246127,20 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276948,10 +246159,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22865, @@ -276960,20 +246168,20 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -276992,10 +246200,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22867, @@ -277004,21 +246209,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277037,10 +246242,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22868, @@ -277049,22 +246251,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277083,10 +246285,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22869, @@ -277095,22 +246294,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277129,10 +246328,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22870, @@ -277141,23 +246337,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277176,10 +246372,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22871, @@ -277188,24 +246381,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x20", + "0x160" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277224,10 +246417,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22872, @@ -277236,22 +246426,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277270,10 +246460,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22875, @@ -277282,23 +246469,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277317,10 +246504,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22876, @@ -277329,24 +246513,24 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277365,10 +246549,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22878, @@ -277377,25 +246558,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277414,10 +246595,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22879, @@ -277426,26 +246604,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x20", + "0x160" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277464,10 +246642,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22880, @@ -277476,25 +246651,25 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277513,10 +246688,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22882, @@ -277525,26 +246697,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277563,10 +246735,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22883, @@ -277575,27 +246744,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0x20", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277614,10 +246783,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22884, @@ -277626,26 +246792,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277664,10 +246830,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22887, @@ -277676,27 +246839,27 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000005f26" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x5f26" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277715,10 +246878,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24358, @@ -277727,26 +246887,26 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277765,10 +246925,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24359, @@ -277777,26 +246934,26 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277815,10 +246972,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24361, @@ -277827,27 +246981,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277866,10 +247020,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24362, @@ -277878,27 +247029,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277917,10 +247068,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24363, @@ -277929,28 +247077,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -277969,10 +247117,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24364, @@ -277981,29 +247126,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278022,10 +247167,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24365, @@ -278034,28 +247176,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278074,10 +247216,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24366, @@ -278086,28 +247225,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278126,10 +247265,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24369, @@ -278138,29 +247274,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005f41" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0x0", + "0x5f41" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278179,10 +247315,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24370, @@ -278191,27 +247324,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278230,10 +247363,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24371, @@ -278242,28 +247372,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278282,42 +247412,39 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } - }, - { - "pc": 24372, - "op": "ADD", - "gas": 32496, - "gasCost": 3, - "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], + "refund": 7600 + }, + { + "pc": 24372, + "op": "ADD", + "gas": 32496, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0xe0", + "0x0" + ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -278335,10 +247462,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24373, @@ -278347,28 +247471,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278387,10 +247511,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24374, @@ -278399,28 +247520,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0x34ada3bd6a2edc0ba986cab" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278439,10 +247560,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24375, @@ -278451,29 +247569,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000180" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x180" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278492,10 +247610,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24376, @@ -278504,30 +247619,30 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x180", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278546,10 +247661,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24377, @@ -278558,29 +247670,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab", - "0000000000000000000000000000000000000000000000000000000000000180" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0x34ada3bd6a2edc0ba986cab", + "0x180" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278599,10 +247711,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24378, @@ -278611,27 +247720,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278650,10 +247759,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24380, @@ -278662,28 +247768,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278702,10 +247808,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24381, @@ -278714,27 +247817,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278753,10 +247856,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24384, @@ -278765,28 +247865,28 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005f29" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20", + "0x5f29" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278805,10 +247905,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24361, @@ -278817,27 +247914,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278856,10 +247953,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24362, @@ -278868,27 +247962,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278907,10 +248001,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24363, @@ -278919,28 +248010,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -278959,10 +248050,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24364, @@ -278971,29 +248059,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279012,10 +248100,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24365, @@ -279024,28 +248109,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279064,10 +248149,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24366, @@ -279076,28 +248158,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279116,10 +248198,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24369, @@ -279128,29 +248207,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005f41" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20", + "0x1", + "0x5f41" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279169,10 +248248,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24385, @@ -279181,27 +248257,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279220,10 +248296,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24386, @@ -279232,27 +248305,27 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279271,10 +248344,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24387, @@ -279283,28 +248353,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279323,10 +248393,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24388, @@ -279335,29 +248402,29 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20", + "0x20", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279376,10 +248443,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24389, @@ -279388,28 +248452,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279428,10 +248492,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24390, @@ -279440,28 +248501,28 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279480,10 +248541,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 24393, @@ -279492,29 +248550,29 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000c55" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20", + "0x1", + "0xc55" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279533,10 +248591,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3157, @@ -279545,27 +248600,27 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279584,10 +248639,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3158, @@ -279596,27 +248648,27 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279635,10 +248687,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3159, @@ -279647,26 +248696,26 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180", - "00000000000000000000000000000000000000000000000000000000000000e0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180", + "0xe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279685,10 +248734,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3160, @@ -279697,25 +248743,25 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000180" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20", + "0x180" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279734,10 +248780,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3161, @@ -279746,24 +248789,24 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279782,10 +248825,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 3162, @@ -279794,23 +248834,23 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000005968" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x5968" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279829,10 +248869,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22888, @@ -279841,22 +248878,22 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279875,10 +248912,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22889, @@ -279887,22 +248921,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279921,10 +248955,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22891, @@ -279933,23 +248964,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000001f" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20", + "0x1f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -279968,10 +248999,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22892, @@ -279980,22 +249008,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000003f" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x3f" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280014,10 +249042,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22925, @@ -280026,23 +249051,23 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000003f", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x3f", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280061,10 +249086,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22926, @@ -280073,22 +249095,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000160", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x160", + "0xc0", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280107,10 +249129,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22927, @@ -280119,22 +249138,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000160" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x20", + "0xc0", + "0x0", + "0x160" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280153,10 +249172,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22928, @@ -280165,22 +249181,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x20", + "0xc0", + "0x160", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280199,10 +249215,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22929, @@ -280211,22 +249224,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x0", + "0xc0", + "0x160", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280245,10 +249258,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22930, @@ -280257,21 +249267,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000180" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x0", + "0xc0", + "0x180" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280290,10 +249300,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22932, @@ -280302,22 +249309,22 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000180", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x0", + "0xc0", + "0x180", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280336,10 +249343,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22933, @@ -280348,21 +249352,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000001a0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x5b5b", + "0x0", + "0xc0", + "0x1a0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280381,10 +249385,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22934, @@ -280393,21 +249394,21 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000005b5b" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x1a0", + "0x0", + "0xc0", + "0x5b5b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280426,10 +249427,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22935, @@ -280438,21 +249436,21 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x1a0", + "0x5b5b", + "0xc0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280471,10 +249469,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22936, @@ -280483,20 +249478,20 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000005b5b", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x1a0", + "0x5b5b", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280515,10 +249510,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 22937, @@ -280527,19 +249519,19 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000005b5b" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x1a0", + "0x5b5b" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280558,10 +249550,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23387, @@ -280570,18 +249559,18 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x1a0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280600,10 +249589,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23388, @@ -280612,18 +249598,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x160", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x1a0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280642,10 +249628,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23389, @@ -280654,18 +249637,18 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000160" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x140", + "0x1", + "0xa0", + "0x0", + "0x160" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280684,10 +249667,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23390, @@ -280696,17 +249676,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x140", + "0x1", + "0xa0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280725,10 +249705,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23391, @@ -280737,17 +249714,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000140" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x0", + "0x1", + "0xa0", + "0x140" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280766,10 +249743,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23392, @@ -280778,18 +249752,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x0", + "0x1", + "0xa0", + "0x140", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280808,10 +249782,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23393, @@ -280820,17 +249791,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000160" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x0", + "0x1", + "0xa0", + "0x160" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280849,10 +249820,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23394, @@ -280861,17 +249829,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xa0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280890,10 +249858,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23395, @@ -280902,17 +249867,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0x0", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280931,10 +249896,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23396, @@ -280943,18 +249905,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0x0", + "0xa0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -280973,10 +249935,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23397, @@ -280985,17 +249944,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0x0", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281014,10 +249973,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23398, @@ -281026,17 +249982,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281055,10 +250011,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23400, @@ -281067,18 +250020,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281097,10 +250050,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23401, @@ -281109,17 +250059,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281138,10 +250088,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23404, @@ -281150,18 +250097,18 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005b21" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x1", + "0x5b21" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281180,10 +250127,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23329, @@ -281192,17 +250136,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281221,10 +250165,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23330, @@ -281233,17 +250174,17 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281262,10 +250203,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23331, @@ -281274,18 +250212,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281304,10 +250242,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23332, @@ -281316,19 +250251,19 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x1", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281347,10 +250282,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23333, @@ -281359,18 +250291,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x1", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281389,10 +250321,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23334, @@ -281401,18 +250330,18 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x1", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281431,10 +250360,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23337, @@ -281443,19 +250369,19 @@ export const trace: any = JSON.parse(` "gasCost": 10, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005b6d" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x1", + "0x1", + "0x5b6d" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281474,10 +250400,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23405, @@ -281486,17 +250409,17 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281515,10 +250438,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23406, @@ -281527,17 +250447,17 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281556,10 +250476,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23407, @@ -281568,16 +250485,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0x1a0", + "0x160", + "0x1", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281596,10 +250513,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23408, @@ -281608,16 +250522,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a0" + "0x5ae401dc", + "0x374", + "0x80", + "0x100", + "0x0", + "0x20", + "0xc0", + "0x160", + "0x1", + "0x1a0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281636,10 +250550,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23409, @@ -281648,16 +250559,16 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000374" + "0x5ae401dc", + "0x1a0", + "0x80", + "0x100", + "0x0", + "0x20", + "0xc0", + "0x160", + "0x1", + "0x374" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281676,10 +250587,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23410, @@ -281688,16 +250596,16 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5ae401dc", + "0x1a0", + "0x374", + "0x100", + "0x0", + "0x20", + "0xc0", + "0x160", + "0x1", + "0x80" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281716,10 +250624,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23411, @@ -281728,15 +250633,15 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x5ae401dc", + "0x1a0", + "0x374", + "0x100", + "0x0", + "0x20", + "0xc0", + "0x160", + "0x1" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281755,10 +250660,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23412, @@ -281767,14 +250669,14 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000160" + "0x5ae401dc", + "0x1a0", + "0x374", + "0x100", + "0x0", + "0x20", + "0xc0", + "0x160" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281793,10 +250695,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23413, @@ -281805,13 +250704,13 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" + "0x5ae401dc", + "0x1a0", + "0x374", + "0x100", + "0x0", + "0x20", + "0xc0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281830,10 +250729,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23414, @@ -281842,12 +250738,12 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" + "0x5ae401dc", + "0x1a0", + "0x374", + "0x100", + "0x0", + "0x20" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281866,10 +250762,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23415, @@ -281878,11 +250771,11 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000" + "0x5ae401dc", + "0x1a0", + "0x374", + "0x100", + "0x0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281901,10 +250794,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23416, @@ -281913,10 +250803,10 @@ export const trace: any = JSON.parse(` "gasCost": 2, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x1a0", + "0x374", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281935,10 +250825,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 23417, @@ -281947,9 +250834,9 @@ export const trace: any = JSON.parse(` "gasCost": 8, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000374" + "0x5ae401dc", + "0x1a0", + "0x374" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -281968,10 +250855,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 884, @@ -281980,8 +250864,8 @@ export const trace: any = JSON.parse(` "gasCost": 1, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0" + "0x5ae401dc", + "0x1a0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -282000,10 +250884,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 885, @@ -282012,8 +250893,8 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0" + "0x5ae401dc", + "0x1a0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -282032,10 +250913,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 887, @@ -282044,9 +250922,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000040" + "0x5ae401dc", + "0x1a0", + "0x40" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -282065,10 +250943,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 888, @@ -282077,9 +250952,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x1a0", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -282098,10 +250973,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 889, @@ -282110,10 +250982,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000001a0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0x1a0", + "0x100", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -282132,10 +251004,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 890, @@ -282144,10 +251013,10 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000001a0" + "0x5ae401dc", + "0x100", + "0x100", + "0x1a0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -282166,10 +251035,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 891, @@ -282178,9 +251044,9 @@ export const trace: any = JSON.parse(` "gasCost": 3, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0" + "0x5ae401dc", + "0x100", + "0xa0" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -282199,10 +251065,7 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 }, { "pc": 892, @@ -282211,9 +251074,9 @@ export const trace: any = JSON.parse(` "gasCost": 0, "depth": 1, "stack": [ - "000000000000000000000000000000000000000000000000000000005ae401dc", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000100" + "0x5ae401dc", + "0xa0", + "0x100" ], "memory": [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -282232,14 +251095,8 @@ export const trace: any = JSON.parse(` "33ebe45200000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000" ], - "storage": { - "19e587846de114853da0434f2868d83a9cbb6ff362f003c883d9f8d25bc1b28b": "00000000000000000000000000000000000003d12be22e33902da0414f8da3ec", - "3c4cb6978f565313379a4d6f3b216b72b4a0d8949fa26e34ffda27eb96e5e69f": "0000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" - } + "refund": 7600 } - ], - "gas": 137858, - "failed": false, - "returnValue": "00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000034ada3bd6a2edc0ba986cab" + ] } `); diff --git a/hardhat-tests/test/fixture-debug-traces/mainnetReturnsDataTrace.ts b/hardhat-tests/test/fixture-debug-traces/mainnetReturnsDataTrace.ts index bb569d385b..b2ffe4c1c2 100644 --- a/hardhat-tests/test/fixture-debug-traces/mainnetReturnsDataTrace.ts +++ b/hardhat-tests/test/fixture-debug-traces/mainnetReturnsDataTrace.ts @@ -1,13 +1,13 @@ -import { TurboGethTrace } from "./types"; +import { GethTrace } from "./types"; // This trace belongs to the tx 0x89ebeb319fcd7bda9c7f8c1b78a7571842a705425b175f24f34fe8e6c60580d4 // from mainnet. It calls Dai's balanceOf(cDai). -// It was generated using TurboGeth 2021.02.04 -export const trace: TurboGethTrace = { +// It was generated using Alchemy (2025-12-30) +export const trace: GethTrace = { gas: 22734, failed: false, returnValue: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", + "0x0000000000000000000000000000000000000000015d67c351534ac76d7e3184", structLogs: [ { pc: 0, @@ -16,8 +16,6 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [], - memory: [], - storage: {}, }, { pc: 2, @@ -25,11 +23,7 @@ export const trace: TurboGethTrace = { gas: 2299, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, + stack: ["0x80"], }, { pc: 4, @@ -37,16 +31,7 @@ export const trace: TurboGethTrace = { gas: 2296, gasCost: 12, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, + stack: ["0x80", "0x40"], }, { pc: 5, @@ -60,7 +45,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 6, @@ -68,15 +52,12 @@ export const trace: TurboGethTrace = { gas: 2282, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 7, @@ -84,16 +65,12 @@ export const trace: TurboGethTrace = { gas: 2279, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8, @@ -101,16 +78,12 @@ export const trace: TurboGethTrace = { gas: 2276, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x0", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 11, @@ -118,17 +91,12 @@ export const trace: TurboGethTrace = { gas: 2273, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010", - ], + stack: ["0x0", "0x1", "0x10"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 16, @@ -136,15 +104,12 @@ export const trace: TurboGethTrace = { gas: 2263, gasCost: 1, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 17, @@ -152,15 +117,12 @@ export const trace: TurboGethTrace = { gas: 2262, gasCost: 2, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 18, @@ -174,7 +136,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 20, @@ -182,15 +143,12 @@ export const trace: TurboGethTrace = { gas: 2257, gasCost: 2, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 21, @@ -198,16 +156,12 @@ export const trace: TurboGethTrace = { gas: 2255, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x4", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 22, @@ -215,15 +169,12 @@ export const trace: TurboGethTrace = { gas: 2252, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 25, @@ -231,16 +182,12 @@ export const trace: TurboGethTrace = { gas: 2249, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000142", - ], + stack: ["0x0", "0x142"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 26, @@ -254,7 +201,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 28, @@ -262,15 +208,12 @@ export const trace: TurboGethTrace = { gas: 2236, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 29, @@ -279,14 +222,13 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "70a082310000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab", + "0x70a082310000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 31, @@ -295,15 +237,14 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "70a082310000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x70a082310000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 32, @@ -311,15 +252,12 @@ export const trace: TurboGethTrace = { gas: 2227, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 33, @@ -327,16 +265,12 @@ export const trace: TurboGethTrace = { gas: 2224, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231", "0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 38, @@ -344,17 +278,12 @@ export const trace: TurboGethTrace = { gas: 2221, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000007ecebe00", - ], + stack: ["0x70a08231", "0x70a08231", "0x7ecebe00"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 39, @@ -362,16 +291,12 @@ export const trace: TurboGethTrace = { gas: 2218, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x70a08231", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 42, @@ -379,17 +304,12 @@ export const trace: TurboGethTrace = { gas: 2215, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000b8", - ], + stack: ["0x70a08231", "0x1", "0xb8"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 184, @@ -397,15 +317,12 @@ export const trace: TurboGethTrace = { gas: 2205, gasCost: 1, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 185, @@ -413,15 +330,12 @@ export const trace: TurboGethTrace = { gas: 2204, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 186, @@ -429,16 +343,12 @@ export const trace: TurboGethTrace = { gas: 2201, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231", "0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 191, @@ -446,17 +356,12 @@ export const trace: TurboGethTrace = { gas: 2198, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000313ce567", - ], + stack: ["0x70a08231", "0x70a08231", "0x313ce567"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 192, @@ -464,16 +369,12 @@ export const trace: TurboGethTrace = { gas: 2195, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x70a08231", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 195, @@ -481,17 +382,12 @@ export const trace: TurboGethTrace = { gas: 2192, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000010a", - ], + stack: ["0x70a08231", "0x0", "0x10a"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 196, @@ -499,15 +395,12 @@ export const trace: TurboGethTrace = { gas: 2182, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 197, @@ -515,16 +408,12 @@ export const trace: TurboGethTrace = { gas: 2179, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231", "0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 202, @@ -532,17 +421,12 @@ export const trace: TurboGethTrace = { gas: 2176, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000313ce567", - ], + stack: ["0x70a08231", "0x70a08231", "0x313ce567"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 203, @@ -550,16 +434,12 @@ export const trace: TurboGethTrace = { gas: 2173, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x70a08231", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 206, @@ -567,17 +447,12 @@ export const trace: TurboGethTrace = { gas: 2170, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002f2", - ], + stack: ["0x70a08231", "0x0", "0x2f2"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 207, @@ -585,15 +460,12 @@ export const trace: TurboGethTrace = { gas: 2160, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 208, @@ -601,16 +473,12 @@ export const trace: TurboGethTrace = { gas: 2157, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231", "0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 213, @@ -618,17 +486,12 @@ export const trace: TurboGethTrace = { gas: 2154, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000003644e515", - ], + stack: ["0x70a08231", "0x70a08231", "0x3644e515"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 214, @@ -636,16 +499,12 @@ export const trace: TurboGethTrace = { gas: 2151, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x70a08231", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 217, @@ -653,17 +512,12 @@ export const trace: TurboGethTrace = { gas: 2148, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000316", - ], + stack: ["0x70a08231", "0x0", "0x316"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 218, @@ -671,15 +525,12 @@ export const trace: TurboGethTrace = { gas: 2138, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 219, @@ -687,16 +538,12 @@ export const trace: TurboGethTrace = { gas: 2135, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231", "0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 224, @@ -704,17 +551,12 @@ export const trace: TurboGethTrace = { gas: 2132, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000040c10f19", - ], + stack: ["0x70a08231", "0x70a08231", "0x40c10f19"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 225, @@ -722,16 +564,12 @@ export const trace: TurboGethTrace = { gas: 2129, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x70a08231", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 228, @@ -739,17 +577,12 @@ export const trace: TurboGethTrace = { gas: 2126, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000334", - ], + stack: ["0x70a08231", "0x0", "0x334"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 229, @@ -757,15 +590,12 @@ export const trace: TurboGethTrace = { gas: 2116, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 230, @@ -773,16 +603,12 @@ export const trace: TurboGethTrace = { gas: 2113, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231", "0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 235, @@ -790,17 +616,12 @@ export const trace: TurboGethTrace = { gas: 2110, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000054fd4d50", - ], + stack: ["0x70a08231", "0x70a08231", "0x54fd4d50"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 236, @@ -808,16 +629,12 @@ export const trace: TurboGethTrace = { gas: 2107, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x70a08231", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 239, @@ -825,17 +642,12 @@ export const trace: TurboGethTrace = { gas: 2104, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000382", - ], + stack: ["0x70a08231", "0x0", "0x382"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 240, @@ -843,15 +655,12 @@ export const trace: TurboGethTrace = { gas: 2094, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 241, @@ -859,16 +668,12 @@ export const trace: TurboGethTrace = { gas: 2091, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231", "0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 246, @@ -876,17 +681,12 @@ export const trace: TurboGethTrace = { gas: 2088, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000065fae35e", - ], + stack: ["0x70a08231", "0x70a08231", "0x65fae35e"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 247, @@ -894,16 +694,12 @@ export const trace: TurboGethTrace = { gas: 2085, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x70a08231", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 250, @@ -911,17 +707,12 @@ export const trace: TurboGethTrace = { gas: 2082, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000405", - ], + stack: ["0x70a08231", "0x0", "0x405"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 251, @@ -929,15 +720,12 @@ export const trace: TurboGethTrace = { gas: 2072, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 252, @@ -945,16 +733,12 @@ export const trace: TurboGethTrace = { gas: 2069, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231", "0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 257, @@ -962,17 +746,12 @@ export const trace: TurboGethTrace = { gas: 2066, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231", "0x70a08231", "0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 258, @@ -980,16 +759,12 @@ export const trace: TurboGethTrace = { gas: 2063, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x70a08231", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 261, @@ -997,17 +772,12 @@ export const trace: TurboGethTrace = { gas: 2060, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000449", - ], + stack: ["0x70a08231", "0x1", "0x449"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1097, @@ -1015,15 +785,12 @@ export const trace: TurboGethTrace = { gas: 2050, gasCost: 1, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1098, @@ -1031,15 +798,12 @@ export const trace: TurboGethTrace = { gas: 2049, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], + stack: ["0x70a08231"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1101, @@ -1047,16 +811,12 @@ export const trace: TurboGethTrace = { gas: 2046, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - ], + stack: ["0x70a08231", "0x48b"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1103, @@ -1064,17 +824,12 @@ export const trace: TurboGethTrace = { gas: 2043, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x70a08231", "0x48b", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1104, @@ -1082,18 +837,12 @@ export const trace: TurboGethTrace = { gas: 2040, gasCost: 2, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x70a08231", "0x48b", "0x4", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1105, @@ -1101,19 +850,12 @@ export const trace: TurboGethTrace = { gas: 2038, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x70a08231", "0x48b", "0x4", "0x4", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1106, @@ -1121,18 +863,12 @@ export const trace: TurboGethTrace = { gas: 2035, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x70a08231", "0x48b", "0x4", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1108, @@ -1140,19 +876,12 @@ export const trace: TurboGethTrace = { gas: 2032, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x70a08231", "0x48b", "0x4", "0x20", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1109, @@ -1160,20 +889,12 @@ export const trace: TurboGethTrace = { gas: 2029, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x70a08231", "0x48b", "0x4", "0x20", "0x20", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1110, @@ -1181,19 +902,12 @@ export const trace: TurboGethTrace = { gas: 2026, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x70a08231", "0x48b", "0x4", "0x20", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1111, @@ -1201,19 +915,12 @@ export const trace: TurboGethTrace = { gas: 2023, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x70a08231", "0x48b", "0x4", "0x20", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1114, @@ -1221,20 +928,12 @@ export const trace: TurboGethTrace = { gas: 2020, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000045f", - ], + stack: ["0x70a08231", "0x48b", "0x4", "0x20", "0x1", "0x45f"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1119, @@ -1242,18 +941,12 @@ export const trace: TurboGethTrace = { gas: 2010, gasCost: 1, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x70a08231", "0x48b", "0x4", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1120, @@ -1261,18 +954,12 @@ export const trace: TurboGethTrace = { gas: 2009, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x70a08231", "0x48b", "0x4", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1121, @@ -1280,19 +967,12 @@ export const trace: TurboGethTrace = { gas: 2006, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x70a08231", "0x48b", "0x4", "0x20", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1122, @@ -1300,18 +980,12 @@ export const trace: TurboGethTrace = { gas: 2003, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x70a08231", "0x48b", "0x4", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1123, @@ -1319,18 +993,12 @@ export const trace: TurboGethTrace = { gas: 2000, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x70a08231", "0x48b", "0x24", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1124, @@ -1338,19 +1006,12 @@ export const trace: TurboGethTrace = { gas: 1997, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x70a08231", "0x48b", "0x24", "0x4", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1125, @@ -1358,20 +1019,12 @@ export const trace: TurboGethTrace = { gas: 1994, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x70a08231", "0x48b", "0x24", "0x4", "0x4", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1126, @@ -1380,19 +1033,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x70a08231", + "0x48b", + "0x24", + "0x4", + "0x4", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1147, @@ -1401,20 +1053,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x70a08231", + "0x48b", + "0x24", + "0x4", + "0x4", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1148, @@ -1423,19 +1074,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x70a08231", + "0x48b", + "0x24", + "0x4", + "0x4", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1149, @@ -1444,19 +1094,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x70a08231", + "0x48b", + "0x24", + "0x4", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1151, @@ -1465,20 +1114,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x70a08231", + "0x48b", + "0x24", + "0x4", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x4", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1152, @@ -1487,19 +1135,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", + "0x70a08231", + "0x48b", + "0x24", + "0x4", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x24", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1153, @@ -1508,19 +1155,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x70a08231", + "0x48b", + "0x24", + "0x4", + "0x24", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1154, @@ -1529,19 +1175,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x4", + "0x24", + "0x24", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1155, @@ -1550,19 +1195,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x24", + "0x24", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1156, @@ -1571,19 +1215,18 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x24", + "0x4", + "0x24", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1157, @@ -1592,18 +1235,17 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x24", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1158, @@ -1612,17 +1254,16 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x24", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1159, @@ -1631,16 +1272,15 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 1162, @@ -1649,17 +1289,16 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "000000000000000000000000000000000000000000000000000000000000128f", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x128f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4751, @@ -1668,16 +1307,15 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4752, @@ -1686,16 +1324,15 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4754, @@ -1704,17 +1341,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4756, @@ -1723,18 +1359,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x2", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4757, @@ -1743,16 +1378,15 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4758, @@ -1761,17 +1395,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4760, @@ -1780,18 +1413,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4761, @@ -1800,16 +1432,15 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4763, @@ -1818,37 +1449,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x40", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4765, - op: "SHA3", + op: "KECCAK256", gas: 1922, gasCost: 42, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x40", + "0x0", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4766, @@ -1857,17 +1486,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0xdd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4768, @@ -1876,18 +1504,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x70a08231", + "0x48b", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0xdd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", + "0x0", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4769, @@ -1896,18 +1523,17 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000000", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", + "0x70a08231", + "0x48b", + "0x0", + "0xdd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", + "0x5d3a536e4d6dbd6114cc1ead35777bab948e3643", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4770, @@ -1916,17 +1542,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000000", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", + "0x70a08231", + "0x48b", + "0x0", + "0xdd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4771, @@ -1935,17 +1560,16 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x70a08231", + "0x48b", + "0xdd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", + "0x0", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 4772, @@ -1954,9 +1578,9 @@ export const trace: TurboGethTrace = { gasCost: 800, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", + "0x70a08231", + "0x48b", + "0xdd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", @@ -1974,20 +1598,12 @@ export const trace: TurboGethTrace = { gas: 1067, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], + stack: ["0x70a08231", "0x48b", "0x15d67c351534ac76d7e3184"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 4774, @@ -1995,21 +1611,12 @@ export const trace: TurboGethTrace = { gas: 1064, gasCost: 8, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "000000000000000000000000000000000000000000000000000000000000048b", - ], + stack: ["0x70a08231", "0x48b", "0x15d67c351534ac76d7e3184", "0x48b"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1163, @@ -2017,20 +1624,12 @@ export const trace: TurboGethTrace = { gas: 1056, gasCost: 1, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], + stack: ["0x70a08231", "0x48b", "0x15d67c351534ac76d7e3184"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1164, @@ -2038,20 +1637,12 @@ export const trace: TurboGethTrace = { gas: 1055, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], + stack: ["0x70a08231", "0x48b", "0x15d67c351534ac76d7e3184"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1166, @@ -2059,21 +1650,12 @@ export const trace: TurboGethTrace = { gas: 1052, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000040", - ], + stack: ["0x70a08231", "0x48b", "0x15d67c351534ac76d7e3184", "0x40"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1167, @@ -2081,21 +1663,12 @@ export const trace: TurboGethTrace = { gas: 1049, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x70a08231", "0x48b", "0x15d67c351534ac76d7e3184", "0x80"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1168, @@ -2104,21 +1677,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x70a08231", + "0x48b", + "0x15d67c351534ac76d7e3184", + "0x80", + "0x80", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1169, @@ -2127,22 +1696,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", + "0x70a08231", + "0x48b", + "0x15d67c351534ac76d7e3184", + "0x80", + "0x80", + "0x15d67c351534ac76d7e3184", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1170, @@ -2151,25 +1716,19 @@ export const trace: TurboGethTrace = { gasCost: 9, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x70a08231", + "0x48b", + "0x15d67c351534ac76d7e3184", + "0x80", + "0x80", + "0x15d67c351534ac76d7e3184", + "0x80", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1171, @@ -2178,11 +1737,11 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x70a08231", + "0x48b", + "0x15d67c351534ac76d7e3184", + "0x80", + "0x80", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", @@ -2191,10 +1750,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1173, @@ -2203,12 +1758,12 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x70a08231", + "0x48b", + "0x15d67c351534ac76d7e3184", + "0x80", + "0x80", + "0x20", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", @@ -2217,10 +1772,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1174, @@ -2229,11 +1780,11 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0x70a08231", + "0x48b", + "0x15d67c351534ac76d7e3184", + "0x80", + "0xa0", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", @@ -2242,10 +1793,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1175, @@ -2254,11 +1801,11 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", + "0x70a08231", + "0x48b", + "0xa0", + "0x80", + "0x15d67c351534ac76d7e3184", ], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", @@ -2267,10 +1814,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1176, @@ -2278,12 +1821,7 @@ export const trace: TurboGethTrace = { gas: 1020, gasCost: 2, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x70a08231", "0x48b", "0xa0", "0x80"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", @@ -2291,10 +1829,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1177, @@ -2302,11 +1836,7 @@ export const trace: TurboGethTrace = { gas: 1018, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], + stack: ["0x70a08231", "0x48b", "0xa0"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", @@ -2314,10 +1844,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1179, @@ -2325,12 +1851,7 @@ export const trace: TurboGethTrace = { gas: 1015, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040", - ], + stack: ["0x70a08231", "0x48b", "0xa0", "0x40"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", @@ -2338,10 +1859,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1180, @@ -2349,12 +1866,7 @@ export const trace: TurboGethTrace = { gas: 1012, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x70a08231", "0x48b", "0xa0", "0x80"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", @@ -2362,10 +1874,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1181, @@ -2373,13 +1881,7 @@ export const trace: TurboGethTrace = { gas: 1009, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x70a08231", "0x48b", "0xa0", "0x80", "0x80"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", @@ -2387,10 +1889,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1182, @@ -2398,13 +1896,7 @@ export const trace: TurboGethTrace = { gas: 1006, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], + stack: ["0x70a08231", "0x48b", "0x80", "0x80", "0xa0"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", @@ -2412,10 +1904,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1183, @@ -2423,12 +1911,7 @@ export const trace: TurboGethTrace = { gas: 1003, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x70a08231", "0x48b", "0x80", "0x20"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", @@ -2436,10 +1919,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, { pc: 1184, @@ -2447,12 +1926,7 @@ export const trace: TurboGethTrace = { gas: 1000, gasCost: 0, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x70a08231", "0x48b", "0x20", "0x80"], memory: [ "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", "0000000000000000000000000000000000000000000000000000000000000002", @@ -2460,10 +1934,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, }, ], }; diff --git a/hardhat-tests/test/fixture-debug-traces/mainnetReturnsDataTraceGeth.ts b/hardhat-tests/test/fixture-debug-traces/mainnetReturnsDataTraceGeth.ts deleted file mode 100644 index c8a1b4225d..0000000000 --- a/hardhat-tests/test/fixture-debug-traces/mainnetReturnsDataTraceGeth.ts +++ /dev/null @@ -1,2470 +0,0 @@ -import { GethTrace } from "./types"; - -// This trace belongs to the tx 0x89ebeb319fcd7bda9c7f8c1b78a7571842a705425b175f24f34fe8e6c60580d4 -// from mainnet. It calls Dai's balanceOf(cDai). -// It was generated using Geth 1.9.25 - -export const trace: GethTrace = { - gas: 22734, - failed: false, - returnValue: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - structLogs: [ - { - pc: 0, - op: "PUSH1", - gas: 2302, - gasCost: 3, - depth: 1, - stack: [], - memory: [], - storage: {}, - }, - { - pc: 2, - op: "PUSH1", - gas: 2299, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, - }, - { - pc: 4, - op: "MSTORE", - gas: 2296, - gasCost: 12, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 5, - op: "CALLVALUE", - gas: 2284, - gasCost: 2, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 6, - op: "DUP1", - gas: 2282, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 7, - op: "ISZERO", - gas: 2279, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 8, - op: "PUSH2", - gas: 2276, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 11, - op: "JUMPI", - gas: 2273, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 16, - op: "JUMPDEST", - gas: 2263, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 17, - op: "POP", - gas: 2262, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 18, - op: "PUSH1", - gas: 2260, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 20, - op: "CALLDATASIZE", - gas: 2257, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 21, - op: "LT", - gas: 2255, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 22, - op: "PUSH2", - gas: 2252, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 25, - op: "JUMPI", - gas: 2249, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000142", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 26, - op: "PUSH1", - gas: 2239, - gasCost: 3, - depth: 1, - stack: [], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 28, - op: "CALLDATALOAD", - gas: 2236, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 29, - op: "PUSH1", - gas: 2233, - gasCost: 3, - depth: 1, - stack: [ - "70a082310000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 31, - op: "SHR", - gas: 2230, - gasCost: 3, - depth: 1, - stack: [ - "70a082310000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 32, - op: "DUP1", - gas: 2227, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 33, - op: "PUSH4", - gas: 2224, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 38, - op: "GT", - gas: 2221, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000007ecebe00", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 39, - op: "PUSH2", - gas: 2218, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 42, - op: "JUMPI", - gas: 2215, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000b8", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 184, - op: "JUMPDEST", - gas: 2205, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 185, - op: "DUP1", - gas: 2204, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 186, - op: "PUSH4", - gas: 2201, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 191, - op: "GT", - gas: 2198, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000313ce567", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 192, - op: "PUSH2", - gas: 2195, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 195, - op: "JUMPI", - gas: 2192, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000010a", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 196, - op: "DUP1", - gas: 2182, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 197, - op: "PUSH4", - gas: 2179, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 202, - op: "EQ", - gas: 2176, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "00000000000000000000000000000000000000000000000000000000313ce567", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 203, - op: "PUSH2", - gas: 2173, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 206, - op: "JUMPI", - gas: 2170, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002f2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 207, - op: "DUP1", - gas: 2160, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 208, - op: "PUSH4", - gas: 2157, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 213, - op: "EQ", - gas: 2154, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000003644e515", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 214, - op: "PUSH2", - gas: 2151, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 217, - op: "JUMPI", - gas: 2148, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000316", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 218, - op: "DUP1", - gas: 2138, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 219, - op: "PUSH4", - gas: 2135, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 224, - op: "EQ", - gas: 2132, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000040c10f19", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 225, - op: "PUSH2", - gas: 2129, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 228, - op: "JUMPI", - gas: 2126, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000334", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 229, - op: "DUP1", - gas: 2116, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 230, - op: "PUSH4", - gas: 2113, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 235, - op: "EQ", - gas: 2110, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000054fd4d50", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 236, - op: "PUSH2", - gas: 2107, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 239, - op: "JUMPI", - gas: 2104, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000382", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 240, - op: "DUP1", - gas: 2094, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 241, - op: "PUSH4", - gas: 2091, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 246, - op: "EQ", - gas: 2088, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000065fae35e", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 247, - op: "PUSH2", - gas: 2085, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 250, - op: "JUMPI", - gas: 2082, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000405", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 251, - op: "DUP1", - gas: 2072, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 252, - op: "PUSH4", - gas: 2069, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 257, - op: "EQ", - gas: 2066, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 258, - op: "PUSH2", - gas: 2063, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 261, - op: "JUMPI", - gas: 2060, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000449", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1097, - op: "JUMPDEST", - gas: 2050, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1098, - op: "PUSH2", - gas: 2049, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1101, - op: "PUSH1", - gas: 2046, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1103, - op: "DUP1", - gas: 2043, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1104, - op: "CALLDATASIZE", - gas: 2040, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1105, - op: "SUB", - gas: 2038, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1106, - op: "PUSH1", - gas: 2035, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1108, - op: "DUP2", - gas: 2032, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1109, - op: "LT", - gas: 2029, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1110, - op: "ISZERO", - gas: 2026, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1111, - op: "PUSH2", - gas: 2023, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1114, - op: "JUMPI", - gas: 2020, - gasCost: 10, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000045f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1119, - op: "JUMPDEST", - gas: 2010, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1120, - op: "DUP2", - gas: 2009, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1121, - op: "ADD", - gas: 2006, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1122, - op: "SWAP1", - gas: 2003, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1123, - op: "DUP1", - gas: 2000, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1124, - op: "DUP1", - gas: 1997, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1125, - op: "CALLDATALOAD", - gas: 1994, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1126, - op: "PUSH20", - gas: 1991, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1147, - op: "AND", - gas: 1988, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1148, - op: "SWAP1", - gas: 1985, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1149, - op: "PUSH1", - gas: 1982, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1151, - op: "ADD", - gas: 1979, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1152, - op: "SWAP1", - gas: 1976, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1153, - op: "SWAP3", - gas: 1973, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1154, - op: "SWAP2", - gas: 1970, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1155, - op: "SWAP1", - gas: 1967, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1156, - op: "POP", - gas: 1964, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1157, - op: "POP", - gas: 1962, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1158, - op: "POP", - gas: 1960, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000024", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1159, - op: "PUSH2", - gas: 1958, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 1162, - op: "JUMP", - gas: 1955, - gasCost: 8, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "000000000000000000000000000000000000000000000000000000000000128f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4751, - op: "JUMPDEST", - gas: 1947, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4752, - op: "PUSH1", - gas: 1946, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4754, - op: "PUSH1", - gas: 1943, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4756, - op: "MSTORE", - gas: 1940, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4757, - op: "DUP1", - gas: 1937, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4758, - op: "PUSH1", - gas: 1934, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4760, - op: "MSTORE", - gas: 1931, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4761, - op: "PUSH1", - gas: 1928, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4763, - op: "PUSH1", - gas: 1925, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4765, - op: "SHA3", - gas: 1922, - gasCost: 42, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4766, - op: "PUSH1", - gas: 1880, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4768, - op: "SWAP2", - gas: 1877, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4769, - op: "POP", - gas: 1874, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000000", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4770, - op: "SWAP1", - gas: 1872, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000000", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4771, - op: "POP", - gas: 1869, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: {}, - }, - { - pc: 4772, - op: "SLOAD", - gas: 1867, - gasCost: 800, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 4773, - op: "DUP2", - gas: 1067, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 4774, - op: "JUMP", - gas: 1064, - gasCost: 8, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "000000000000000000000000000000000000000000000000000000000000048b", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1163, - op: "JUMPDEST", - gas: 1056, - gasCost: 1, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1164, - op: "PUSH1", - gas: 1055, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1166, - op: "MLOAD", - gas: 1052, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1167, - op: "DUP1", - gas: 1049, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1168, - op: "DUP3", - gas: 1046, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1169, - op: "DUP2", - gas: 1043, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1170, - op: "MSTORE", - gas: 1040, - gasCost: 9, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1171, - op: "PUSH1", - gas: 1031, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1173, - op: "ADD", - gas: 1028, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1174, - op: "SWAP2", - gas: 1025, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1175, - op: "POP", - gas: 1022, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1176, - op: "POP", - gas: 1020, - gasCost: 2, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1177, - op: "PUSH1", - gas: 1018, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1179, - op: "MLOAD", - gas: 1015, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1180, - op: "DUP1", - gas: 1012, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1181, - op: "SWAP2", - gas: 1009, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1182, - op: "SUB", - gas: 1006, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1183, - op: "SWAP1", - gas: 1003, - gasCost: 3, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - { - pc: 1184, - op: "RETURN", - gas: 1000, - gasCost: 0, - depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000070a08231", - "000000000000000000000000000000000000000000000000000000000000048b", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [ - "0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - ], - storage: { - dd4746fb94b2ffc6eeaac985ba48d8d8573a5e7cf883a998fed3dcbb39c35d46: - "0000000000000000000000000000000000000000015d67c351534ac76d7e3184", - }, - }, - ], -}; diff --git a/hardhat-tests/test/fixture-debug-traces/mainnetRevertTrace.ts b/hardhat-tests/test/fixture-debug-traces/mainnetRevertTrace.ts index 3e93d5a926..c1bce01d2f 100644 --- a/hardhat-tests/test/fixture-debug-traces/mainnetRevertTrace.ts +++ b/hardhat-tests/test/fixture-debug-traces/mainnetRevertTrace.ts @@ -1,12 +1,13 @@ -import { TurboGethTrace } from "./types"; +import { GethTrace } from "./types"; // This trace belongs to the tx 0x6214b912cc9916d8b7bf5f4ff876e259f5f3754ddebb6df8c8e897cad31ae148 // from mainnet. -// It was generated using TurboGeth 2021.02.04 -export const trace: TurboGethTrace = { +// It was generated using Alchemy (2025-12-30) +export const trace: GethTrace = { gas: 28853, failed: true, - returnValue: "", + returnValue: + "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b556e69737761705632526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54000000000000000000000000000000000000000000", structLogs: [ { pc: 0, @@ -15,8 +16,6 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [], - memory: [], - storage: {}, }, { pc: 2, @@ -24,11 +23,7 @@ export const trace: TurboGethTrace = { gas: 133328, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, + stack: ["0x80"], }, { pc: 4, @@ -36,16 +31,7 @@ export const trace: TurboGethTrace = { gas: 133325, gasCost: 12, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, + stack: ["0x80", "0x40"], }, { pc: 5, @@ -59,7 +45,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 7, @@ -67,15 +52,12 @@ export const trace: TurboGethTrace = { gas: 133310, gasCost: 2, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8, @@ -83,16 +65,12 @@ export const trace: TurboGethTrace = { gas: 133308, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e4", - ], + stack: ["0x4", "0xe4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 9, @@ -100,15 +78,12 @@ export const trace: TurboGethTrace = { gas: 133305, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 12, @@ -116,16 +91,12 @@ export const trace: TurboGethTrace = { gas: 133302, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000018f", - ], + stack: ["0x0", "0x18f"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 13, @@ -139,7 +110,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 15, @@ -147,15 +117,12 @@ export const trace: TurboGethTrace = { gas: 133289, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 16, @@ -164,14 +131,13 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "7ff36ab50000000000000000000000000000000000000000000000aaf4dac5b5", + "0x7ff36ab50000000000000000000000000000000000000000000000aaf4dac5b5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 18, @@ -180,15 +146,14 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "7ff36ab50000000000000000000000000000000000000000000000aaf4dac5b5", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab50000000000000000000000000000000000000000000000aaf4dac5b5", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 19, @@ -196,15 +161,12 @@ export const trace: TurboGethTrace = { gas: 133280, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 20, @@ -212,16 +174,12 @@ export const trace: TurboGethTrace = { gas: 133277, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5", "0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 25, @@ -229,17 +187,12 @@ export const trace: TurboGethTrace = { gas: 133274, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000008803dbee", - ], + stack: ["0x7ff36ab5", "0x7ff36ab5", "0x8803dbee"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 26, @@ -247,16 +200,12 @@ export const trace: TurboGethTrace = { gas: 133271, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x7ff36ab5", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 29, @@ -264,17 +213,12 @@ export const trace: TurboGethTrace = { gas: 133268, gasCost: 10, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d6", - ], + stack: ["0x7ff36ab5", "0x1", "0xd6"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 214, @@ -282,15 +226,12 @@ export const trace: TurboGethTrace = { gas: 133258, gasCost: 1, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 215, @@ -298,15 +239,12 @@ export const trace: TurboGethTrace = { gas: 133257, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 216, @@ -314,16 +252,12 @@ export const trace: TurboGethTrace = { gas: 133254, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5", "0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 221, @@ -331,17 +265,12 @@ export const trace: TurboGethTrace = { gas: 133251, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000004a25d94a", - ], + stack: ["0x7ff36ab5", "0x7ff36ab5", "0x4a25d94a"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 222, @@ -349,16 +278,12 @@ export const trace: TurboGethTrace = { gas: 133248, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x7ff36ab5", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 225, @@ -366,17 +291,12 @@ export const trace: TurboGethTrace = { gas: 133245, gasCost: 10, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000138", - ], + stack: ["0x7ff36ab5", "0x0", "0x138"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 226, @@ -384,15 +304,12 @@ export const trace: TurboGethTrace = { gas: 133235, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 227, @@ -400,16 +317,12 @@ export const trace: TurboGethTrace = { gas: 133232, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5", "0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 232, @@ -417,17 +330,12 @@ export const trace: TurboGethTrace = { gas: 133229, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "00000000000000000000000000000000000000000000000000000000791ac947", - ], + stack: ["0x7ff36ab5", "0x7ff36ab5", "0x791ac947"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 233, @@ -435,16 +343,12 @@ export const trace: TurboGethTrace = { gas: 133226, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x7ff36ab5", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 236, @@ -452,17 +356,12 @@ export const trace: TurboGethTrace = { gas: 133223, gasCost: 10, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000112", - ], + stack: ["0x7ff36ab5", "0x0", "0x112"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 237, @@ -470,15 +369,12 @@ export const trace: TurboGethTrace = { gas: 133213, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 238, @@ -486,16 +382,12 @@ export const trace: TurboGethTrace = { gas: 133210, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5", "0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 243, @@ -503,17 +395,12 @@ export const trace: TurboGethTrace = { gas: 133207, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "00000000000000000000000000000000000000000000000000000000791ac947", - ], + stack: ["0x7ff36ab5", "0x7ff36ab5", "0x791ac947"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 244, @@ -521,16 +408,12 @@ export const trace: TurboGethTrace = { gas: 133204, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x7ff36ab5", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 247, @@ -538,17 +421,12 @@ export const trace: TurboGethTrace = { gas: 133201, gasCost: 10, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000741", - ], + stack: ["0x7ff36ab5", "0x0", "0x741"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 248, @@ -556,15 +434,12 @@ export const trace: TurboGethTrace = { gas: 133191, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 249, @@ -572,16 +447,12 @@ export const trace: TurboGethTrace = { gas: 133188, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5", "0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 254, @@ -589,17 +460,12 @@ export const trace: TurboGethTrace = { gas: 133185, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5", "0x7ff36ab5", "0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 255, @@ -607,16 +473,12 @@ export const trace: TurboGethTrace = { gas: 133182, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x7ff36ab5", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 258, @@ -624,17 +486,12 @@ export const trace: TurboGethTrace = { gas: 133179, gasCost: 10, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000007e6", - ], + stack: ["0x7ff36ab5", "0x1", "0x7e6"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2022, @@ -642,15 +499,12 @@ export const trace: TurboGethTrace = { gas: 133169, gasCost: 1, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2023, @@ -658,15 +512,12 @@ export const trace: TurboGethTrace = { gas: 133168, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - ], + stack: ["0x7ff36ab5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2026, @@ -674,16 +525,12 @@ export const trace: TurboGethTrace = { gas: 133165, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - ], + stack: ["0x7ff36ab5", "0x340"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2028, @@ -691,17 +538,12 @@ export const trace: TurboGethTrace = { gas: 133162, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x7ff36ab5", "0x340", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2029, @@ -709,18 +551,12 @@ export const trace: TurboGethTrace = { gas: 133159, gasCost: 2, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x7ff36ab5", "0x340", "0x4", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2030, @@ -728,19 +564,12 @@ export const trace: TurboGethTrace = { gas: 133157, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e4", - ], + stack: ["0x7ff36ab5", "0x340", "0x4", "0x4", "0xe4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2031, @@ -748,18 +577,12 @@ export const trace: TurboGethTrace = { gas: 133154, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], + stack: ["0x7ff36ab5", "0x340", "0x4", "0xe0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2033, @@ -767,19 +590,12 @@ export const trace: TurboGethTrace = { gas: 133151, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x7ff36ab5", "0x340", "0x4", "0xe0", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2034, @@ -787,20 +603,12 @@ export const trace: TurboGethTrace = { gas: 133148, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], + stack: ["0x7ff36ab5", "0x340", "0x4", "0xe0", "0x80", "0xe0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2035, @@ -808,19 +616,12 @@ export const trace: TurboGethTrace = { gas: 133145, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x7ff36ab5", "0x340", "0x4", "0xe0", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2036, @@ -828,19 +629,12 @@ export const trace: TurboGethTrace = { gas: 133142, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x7ff36ab5", "0x340", "0x4", "0xe0", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2039, @@ -848,20 +642,12 @@ export const trace: TurboGethTrace = { gas: 133139, gasCost: 10, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000007fc", - ], + stack: ["0x7ff36ab5", "0x340", "0x4", "0xe0", "0x1", "0x7fc"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2044, @@ -869,18 +655,12 @@ export const trace: TurboGethTrace = { gas: 133129, gasCost: 1, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], + stack: ["0x7ff36ab5", "0x340", "0x4", "0xe0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2045, @@ -888,18 +668,12 @@ export const trace: TurboGethTrace = { gas: 133128, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], + stack: ["0x7ff36ab5", "0x340", "0x4", "0xe0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2046, @@ -907,19 +681,12 @@ export const trace: TurboGethTrace = { gas: 133125, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x7ff36ab5", "0x340", "0x4", "0xe0", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2047, @@ -927,19 +694,12 @@ export const trace: TurboGethTrace = { gas: 133122, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - ], + stack: ["0x7ff36ab5", "0x340", "0x4", "0xe0", "0xaaf4dac5b59af21dfd"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2048, @@ -947,19 +707,12 @@ export const trace: TurboGethTrace = { gas: 133119, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x7ff36ab5", "0x340", "0xaaf4dac5b59af21dfd", "0xe0", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2049, @@ -967,19 +720,12 @@ export const trace: TurboGethTrace = { gas: 133116, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], + stack: ["0x7ff36ab5", "0x340", "0xaaf4dac5b59af21dfd", "0x4", "0xe0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2050, @@ -988,19 +734,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0x4", + "0xe0", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2051, @@ -1008,19 +753,12 @@ export const trace: TurboGethTrace = { gas: 133110, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000e4", - ], + stack: ["0x7ff36ab5", "0x340", "0xaaf4dac5b59af21dfd", "0x4", "0xe4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2052, @@ -1028,19 +766,12 @@ export const trace: TurboGethTrace = { gas: 133107, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x7ff36ab5", "0x340", "0xaaf4dac5b59af21dfd", "0xe4", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2054, @@ -1049,19 +780,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2055, @@ -1070,20 +800,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x40", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2056, @@ -1092,19 +821,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2058, @@ -1113,20 +841,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2059, @@ -1135,21 +862,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x20", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2060, @@ -1158,20 +884,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000024", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x24", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2061, @@ -1180,20 +905,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2067, @@ -1202,21 +926,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000100000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x80", + "0x100000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2068, @@ -1225,22 +948,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000100000000", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x80", + "0x100000000", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2069, @@ -1249,21 +971,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x80", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2070, @@ -1272,21 +993,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x80", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2073, @@ -1295,22 +1015,21 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000081e", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x80", + "0x1", + "0x81e", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2078, @@ -1319,20 +1038,19 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2079, @@ -1341,20 +1059,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2080, @@ -1363,21 +1080,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x80", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2081, @@ -1386,20 +1102,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x84", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2082, @@ -1408,21 +1123,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000e4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x84", + "0xe4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2084, @@ -1431,22 +1145,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x84", + "0xe4", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2085, @@ -1455,23 +1168,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000084", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x84", + "0xe4", + "0x20", + "0x84", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2086, @@ -1480,22 +1192,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x84", + "0xe4", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2087, @@ -1504,21 +1215,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x84", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2088, @@ -1527,21 +1237,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x84", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2091, @@ -1550,22 +1259,21 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000830", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x84", + "0x1", + "0x830", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2096, @@ -1574,20 +1282,19 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x84", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2097, @@ -1596,20 +1303,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x84", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2098, @@ -1618,21 +1324,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000084", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x84", + "0x84", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2099, @@ -1641,21 +1346,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x84", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2100, @@ -1664,21 +1368,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000084", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x2", + "0x84", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2102, @@ -1687,22 +1390,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x2", + "0x84", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2103, @@ -1711,21 +1413,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x2", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2104, @@ -1734,21 +1435,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2105, @@ -1757,22 +1457,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0xe4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2107, @@ -1781,23 +1480,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0xe4", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2108, @@ -1806,24 +1504,23 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0xe4", + "0x20", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2109, @@ -1832,23 +1529,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0xe4", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2110, @@ -1857,24 +1553,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0xe4", + "0x40", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2111, @@ -1883,23 +1578,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "00000000000000000000000000000000000000000000000000000000000000e4", - "00000000000000000000000000000000000000000000000000000000000000e4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0xe4", + "0xe4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2112, @@ -1908,22 +1602,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2118, @@ -1932,23 +1625,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000100000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0x0", + "0x100000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2119, @@ -1957,24 +1649,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000100000000", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0x0", + "0x100000000", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2120, @@ -1983,23 +1674,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2121, @@ -2008,22 +1698,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2122, @@ -2032,22 +1721,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2125, @@ -2056,23 +1744,22 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000852", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", + "0x1", + "0x852", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2130, @@ -2081,21 +1768,20 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2131, @@ -2104,21 +1790,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0xa4", + "0x2", + "0x44", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2132, @@ -2127,21 +1812,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xe4", + "0x4", + "0x44", + "0x2", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2133, @@ -2150,21 +1834,20 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x4", + "0x44", + "0x2", + "0xe4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2134, @@ -2173,20 +1856,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x4", + "0x44", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2135, @@ -2195,20 +1877,19 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x44", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2136, @@ -2217,19 +1898,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x44", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2157, @@ -2238,20 +1918,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x44", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2158, @@ -2260,21 +1939,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x44", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x44", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2159, @@ -2283,21 +1961,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x44", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2160, @@ -2306,20 +1983,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x44", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2161, @@ -2328,20 +2004,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "0000000000000000000000000000000000000000000000000000000000000044", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x44", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2163, @@ -2350,21 +2025,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "0000000000000000000000000000000000000000000000000000000000000044", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x44", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2164, @@ -2373,20 +2047,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "0000000000000000000000000000000000000000000000000000000000000064", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x64", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2165, @@ -2395,20 +2068,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 2168, @@ -2417,21 +2089,20 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000002105", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x2105", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8453, @@ -2440,20 +2111,19 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8454, @@ -2462,20 +2132,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8456, @@ -2484,21 +2153,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8457, @@ -2507,22 +2175,21 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8458, @@ -2531,23 +2198,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000603d3623", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x603d3623", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8459, @@ -2556,24 +2222,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000603d3623", - "00000000000000000000000000000000000000000000000000000000603d3635", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x603d3623", + "0x603d3635", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8460, @@ -2582,23 +2247,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8461, @@ -2607,23 +2271,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8464, @@ -2632,24 +2295,23 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000002177", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x1", + "0x2177", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8567, @@ -2658,22 +2320,21 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8568, @@ -2682,22 +2343,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8601, @@ -2706,23 +2366,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8622, @@ -2731,24 +2390,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8623, @@ -2757,23 +2415,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8624, @@ -2782,24 +2439,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8625, @@ -2808,25 +2464,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8627, @@ -2835,26 +2490,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", + "0x2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8628, @@ -2863,27 +2517,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", + "0x2", + "0x0", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8629, @@ -2892,28 +2545,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", + "0x2", + "0x0", + "0x2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8630, @@ -2922,27 +2574,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", + "0x2", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8633, @@ -2951,28 +2602,27 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000021bb", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", + "0x2", + "0x0", + "0x1", + "0x21bb", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8635, @@ -2981,26 +2631,25 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", + "0x2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8636, @@ -3009,26 +2658,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", + "0x2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8637, @@ -3037,26 +2685,25 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", + "0x0", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8638, @@ -3065,25 +2712,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8640, @@ -3092,26 +2738,25 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8641, @@ -3120,25 +2765,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8642, @@ -3147,24 +2791,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8643, @@ -3173,24 +2816,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8664, @@ -3199,25 +2841,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8665, @@ -3226,24 +2867,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8686, @@ -3252,25 +2892,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8687, @@ -3279,24 +2918,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8688, @@ -3305,23 +2943,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8691, @@ -3330,24 +2967,23 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000225a", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x1", + "0x225a", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8794, @@ -3356,22 +2992,21 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8795, @@ -3380,22 +3015,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8798, @@ -3404,23 +3038,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8831, @@ -3429,24 +3062,23 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8832, @@ -3455,25 +3087,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8833, @@ -3482,26 +3113,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8834, @@ -3510,27 +3140,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8835, @@ -3539,28 +3168,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8836, @@ -3569,29 +3197,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8838, @@ -3600,30 +3227,29 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x2", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8839, @@ -3632,29 +3258,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8841, @@ -3663,30 +3288,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x40", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8842, @@ -3695,29 +3319,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8844, @@ -3726,30 +3349,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x60", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8845, @@ -3758,30 +3380,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x60", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8846, @@ -3790,30 +3411,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x80", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8847, @@ -3822,31 +3442,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x80", + "0x60", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8848, @@ -3855,30 +3474,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x80", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8850, @@ -3887,31 +3505,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x80", + "0xe0", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8851, @@ -3920,29 +3537,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000e0", ], - storage: {}, }, { pc: 8852, @@ -3951,30 +3567,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0xa4", + "0x2", + "0x2", + "0x80", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000e0", ], - storage: {}, }, { pc: 8853, @@ -3983,30 +3598,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x2", + "0x2", + "0x80", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000e0", ], - storage: {}, }, { pc: 8854, @@ -4015,30 +3629,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x80", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000e0", ], - storage: {}, }, { pc: 8855, @@ -4047,30 +3660,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x80", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000e0", ], - storage: {}, }, { pc: 8856, @@ -4079,30 +3691,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000e0", ], - storage: {}, }, { pc: 8857, @@ -4111,31 +3722,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0x80", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000e0", ], - storage: {}, }, { pc: 8858, @@ -4144,34 +3754,31 @@ export const trace: TurboGethTrace = { gasCost: 9, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0x80", + "0x2", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8859, @@ -4180,23 +3787,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4205,7 +3812,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 8861, @@ -4214,24 +3820,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0x80", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4240,7 +3846,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 8862, @@ -4249,23 +3854,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4274,7 +3879,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 8863, @@ -4283,24 +3887,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xa0", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4309,7 +3913,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 8864, @@ -4318,25 +3921,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xa0", + "0xa4", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4345,7 +3948,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 8866, @@ -4354,26 +3956,26 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xa0", + "0xa4", + "0x2", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4382,7 +3984,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 8867, @@ -4391,25 +3992,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xa0", + "0xa4", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4418,7 +4019,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 8868, @@ -4427,26 +4027,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xa0", + "0xa4", + "0x40", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4455,7 +4055,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 8869, @@ -4464,27 +4063,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xa0", + "0xa4", + "0x40", + "0x40", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4493,7 +4092,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 8870, @@ -4502,28 +4100,28 @@ export const trace: TurboGethTrace = { gasCost: 15, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xa0", + "0xa4", + "0x40", + "0x40", + "0xa4", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4531,10 +4129,7 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000000000000000000e0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8871, @@ -4543,25 +4138,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xa0", + "0xa4", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4572,7 +4167,6 @@ export const trace: TurboGethTrace = { "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], - storage: {}, }, { pc: 8873, @@ -4581,26 +4175,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xa0", + "0xa4", + "0x40", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4611,7 +4205,6 @@ export const trace: TurboGethTrace = { "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], - storage: {}, }, { pc: 8874, @@ -4620,26 +4213,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0x0", + "0xa4", + "0x40", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4650,7 +4243,6 @@ export const trace: TurboGethTrace = { "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], - storage: {}, }, { pc: 8875, @@ -4659,25 +4251,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0x0", + "0xa4", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4688,7 +4280,6 @@ export const trace: TurboGethTrace = { "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], - storage: {}, }, { pc: 8876, @@ -4697,25 +4288,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xe0", + "0xa4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4726,7 +4317,6 @@ export const trace: TurboGethTrace = { "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], - storage: {}, }, { pc: 8877, @@ -4735,25 +4325,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xe0", + "0x0", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4764,7 +4354,6 @@ export const trace: TurboGethTrace = { "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], - storage: {}, }, { pc: 8878, @@ -4773,25 +4362,25 @@ export const trace: TurboGethTrace = { gasCost: 6, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xa4", + "0x0", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4801,9 +4390,7 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8879, @@ -4812,23 +4399,23 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4840,7 +4427,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8880, @@ -4849,22 +4435,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4876,7 +4462,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8883, @@ -4885,23 +4470,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000003f60", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xa4", + "0x2", + "0x2", + "0x3f60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4913,7 +4498,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8884, @@ -4922,23 +4506,23 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000003f60", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x3f60", + "0x2", + "0x2", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4950,7 +4534,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8885, @@ -4959,22 +4542,22 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000003f60", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x3f60", + "0x2", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4986,7 +4569,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8886, @@ -4995,21 +4577,21 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000003f60", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x3f60", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5021,7 +4603,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8887, @@ -5030,20 +4611,20 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000003f60", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x3f60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5055,7 +4636,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16224, @@ -5064,19 +4644,19 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5088,7 +4668,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16225, @@ -5097,19 +4676,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5121,7 +4700,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16227, @@ -5130,20 +4708,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5155,7 +4733,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16229, @@ -5164,21 +4741,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5190,7 +4767,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16230, @@ -5199,22 +4775,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5226,7 +4802,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16231, @@ -5235,22 +4810,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5262,7 +4837,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16232, @@ -5271,21 +4845,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5297,7 +4871,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16233, @@ -5306,21 +4879,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5332,7 +4905,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16236, @@ -5341,22 +4913,22 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003fd3", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x1", + "0x3fd3", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5368,7 +4940,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16339, @@ -5377,20 +4948,20 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5402,7 +4973,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16340, @@ -5411,20 +4981,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5436,7 +5006,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16341, @@ -5445,21 +5014,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5471,7 +5040,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16342, @@ -5480,21 +5048,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5506,7 +5074,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16351, @@ -5515,22 +5082,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", + "0xffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5542,7 +5109,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16352, @@ -5551,23 +5117,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", + "0xffffffffffffffff", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5579,7 +5145,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16353, @@ -5588,22 +5153,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5615,7 +5180,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16354, @@ -5624,23 +5188,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5652,7 +5216,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16355, @@ -5661,23 +5224,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5689,7 +5252,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16358, @@ -5698,24 +5260,24 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003feb", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", + "0x0", + "0x1", + "0x3feb", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5727,7 +5289,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16363, @@ -5736,22 +5297,22 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5763,7 +5324,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16364, @@ -5772,22 +5332,22 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5799,7 +5359,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16365, @@ -5808,21 +5367,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5834,7 +5393,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16367, @@ -5843,22 +5401,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5870,7 +5428,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16368, @@ -5879,22 +5436,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0x2", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5906,7 +5463,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16369, @@ -5915,22 +5471,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5942,7 +5498,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16370, @@ -5951,23 +5506,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5979,7 +5534,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16371, @@ -5988,24 +5542,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x2", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6017,7 +5571,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16372, @@ -6026,22 +5579,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6053,7 +5606,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16373, @@ -6062,23 +5614,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6090,7 +5642,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16375, @@ -6099,24 +5650,24 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x2", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6128,7 +5679,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16376, @@ -6137,23 +5687,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6165,7 +5715,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16378, @@ -6174,24 +5723,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x40", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6203,7 +5752,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16379, @@ -6212,23 +5760,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6240,7 +5788,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16380, @@ -6249,24 +5796,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x60", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6278,7 +5825,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16381, @@ -6287,23 +5833,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6315,7 +5861,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16383, @@ -6324,24 +5869,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x140", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6353,7 +5898,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16384, @@ -6362,22 +5906,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6389,7 +5933,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16385, @@ -6398,23 +5941,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6426,7 +5969,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16386, @@ -6435,23 +5977,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6463,7 +6005,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16389, @@ -6472,24 +6013,24 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004015", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x0", + "0x4015", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6501,7 +6042,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16390, @@ -6510,22 +6050,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6537,7 +6077,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16391, @@ -6546,23 +6085,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6574,7 +6113,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16393, @@ -6583,24 +6121,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0xe0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6612,7 +6150,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16394, @@ -6621,23 +6158,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6649,7 +6186,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16396, @@ -6658,24 +6194,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x100", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6687,7 +6223,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16397, @@ -6696,25 +6231,25 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x100", + "0x20", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6726,7 +6261,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16398, @@ -6735,24 +6269,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x100", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6764,7 +6298,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16399, @@ -6773,25 +6306,25 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x100", + "0x40", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6803,7 +6336,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16400, @@ -6812,26 +6344,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000e4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x100", + "0x40", + "0x40", + "0xe4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6843,7 +6375,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", ], - storage: {}, }, { pc: 16401, @@ -6852,27 +6383,27 @@ export const trace: TurboGethTrace = { gasCost: 15, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000e4", - "0000000000000000000000000000000000000000000000000000000000000100", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x100", + "0x40", + "0x40", + "0xe4", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6883,10 +6414,7 @@ export const trace: TurboGethTrace = { "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16402, @@ -6895,24 +6423,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x100", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6926,7 +6454,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16403, @@ -6935,23 +6462,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x2", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6965,7 +6492,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16404, @@ -6974,23 +6500,23 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x140", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7004,7 +6530,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16405, @@ -7013,22 +6538,22 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7042,7 +6567,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16406, @@ -7051,22 +6575,22 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7080,7 +6604,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16407, @@ -7089,21 +6612,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x60", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7117,7 +6640,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16408, @@ -7126,21 +6648,21 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7154,7 +6676,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16409, @@ -7163,20 +6684,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7190,7 +6711,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16410, @@ -7199,21 +6719,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7227,7 +6747,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16411, @@ -7236,22 +6755,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7265,7 +6784,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16413, @@ -7274,23 +6792,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7304,7 +6822,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16414, @@ -7313,24 +6830,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", + "0x0", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7344,7 +6861,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16415, @@ -7353,24 +6869,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", + "0x0", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7384,7 +6900,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16416, @@ -7393,25 +6908,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", + "0x0", + "0x2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7425,7 +6940,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16417, @@ -7434,24 +6948,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7465,7 +6979,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16420, @@ -7474,25 +6987,25 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004026", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", + "0x0", + "0x1", + "0x4026", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7506,7 +7019,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16422, @@ -7515,23 +7027,23 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7545,7 +7057,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16423, @@ -7554,23 +7065,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7584,7 +7095,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16425, @@ -7593,24 +7103,24 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7624,7 +7134,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16426, @@ -7633,23 +7142,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7663,7 +7172,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16428, @@ -7672,24 +7180,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7703,7 +7211,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16429, @@ -7712,23 +7219,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0xe0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7742,7 +7249,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16430, @@ -7751,22 +7257,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000100", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7780,7 +7286,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16431, @@ -7789,23 +7294,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0x100", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7819,7 +7324,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16432, @@ -7828,24 +7332,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000100", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0x100", + "0x30927f74c9de0000", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7859,7 +7363,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16433, @@ -7868,22 +7371,22 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000100", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7897,7 +7400,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16434, @@ -7906,21 +7408,21 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7934,7 +7436,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16435, @@ -7943,20 +7444,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7970,7 +7471,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16437, @@ -7979,21 +7479,21 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8007,7 +7507,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16438, @@ -8016,21 +7515,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8044,7 +7543,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16440, @@ -8053,22 +7551,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8082,7 +7580,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16441, @@ -8091,23 +7588,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x1", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8121,7 +7618,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16442, @@ -8130,23 +7626,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x1", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8160,7 +7656,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16443, @@ -8169,22 +7664,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8198,7 +7693,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16444, @@ -8207,23 +7701,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x1", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8237,7 +7731,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16445, @@ -8246,22 +7739,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8275,7 +7768,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16446, @@ -8284,22 +7776,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8313,7 +7805,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16449, @@ -8322,23 +7813,23 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040be", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x40be", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8352,7 +7843,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16450, @@ -8361,21 +7851,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8389,7 +7879,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16452, @@ -8398,22 +7887,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8427,7 +7916,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16453, @@ -8436,23 +7924,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8466,7 +7954,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16456, @@ -8475,24 +7962,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8506,7 +7993,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16457, @@ -8515,25 +8001,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8547,7 +8033,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16458, @@ -8556,26 +8041,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8589,7 +8074,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16459, @@ -8598,27 +8082,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8632,7 +8116,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16460, @@ -8641,28 +8124,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", + "0x0", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8676,7 +8159,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16461, @@ -8685,28 +8167,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", + "0x0", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8720,7 +8202,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16462, @@ -8729,29 +8210,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", + "0x0", + "0x2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8765,7 +8246,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16463, @@ -8774,28 +8254,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8809,7 +8289,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16466, @@ -8818,29 +8297,29 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004054", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", + "0x0", + "0x1", + "0x4054", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8854,7 +8333,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16468, @@ -8863,27 +8341,27 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8897,7 +8375,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16469, @@ -8906,27 +8383,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8940,7 +8417,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16471, @@ -8949,28 +8425,28 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8984,7 +8460,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16472, @@ -8993,27 +8468,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9027,7 +8502,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16474, @@ -9036,28 +8510,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9071,7 +8545,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16475, @@ -9080,27 +8553,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x80", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9114,7 +8587,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16476, @@ -9123,26 +8595,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9156,7 +8628,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16477, @@ -9165,26 +8636,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9198,7 +8669,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16478, @@ -9207,27 +8677,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9241,7 +8711,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16479, @@ -9250,28 +8719,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9285,7 +8754,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16481, @@ -9294,29 +8762,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9330,7 +8798,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16482, @@ -9339,28 +8806,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9374,7 +8841,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16483, @@ -9383,29 +8849,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x1", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9419,7 +8885,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16484, @@ -9428,29 +8893,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x1", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9464,7 +8929,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16485, @@ -9473,30 +8937,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x1", + "0x2", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9510,7 +8974,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16486, @@ -9519,29 +8982,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9555,7 +9018,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16489, @@ -9564,30 +9026,30 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000406b", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x1", + "0x1", + "0x406b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9601,7 +9063,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16491, @@ -9610,28 +9071,28 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9645,7 +9106,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16492, @@ -9654,28 +9114,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9689,7 +9149,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16494, @@ -9698,31 +9157,31 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x1", + "0x20", + ], + memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", @@ -9734,7 +9193,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16495, @@ -9743,28 +9201,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9778,7 +9236,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16497, @@ -9787,29 +9244,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x20", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9823,7 +9280,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16498, @@ -9832,28 +9288,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x80", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9867,7 +9323,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16499, @@ -9876,27 +9331,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000000c0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xc0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9910,7 +9365,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16500, @@ -9919,27 +9373,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9953,7 +9407,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16503, @@ -9962,28 +9415,28 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000000000000000000052eb", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x52eb", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9997,7 +9450,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21227, @@ -10006,27 +9458,27 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10040,7 +9492,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21228, @@ -10049,27 +9500,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10083,7 +9534,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21230, @@ -10092,28 +9542,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10127,7 +9577,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21231, @@ -10136,29 +9585,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10172,7 +9621,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21233, @@ -10181,30 +9629,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10218,7 +9666,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21236, @@ -10227,31 +9674,31 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10265,7 +9712,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21237, @@ -10274,32 +9720,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10313,7 +9759,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21238, @@ -10322,33 +9767,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10362,7 +9807,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21241, @@ -10371,34 +9815,34 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000004d9f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x4d9f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10412,7 +9856,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19871, @@ -10421,33 +9864,33 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10461,7 +9904,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19872, @@ -10470,33 +9912,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10510,7 +9952,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19874, @@ -10519,34 +9960,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10560,7 +10001,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19875, @@ -10569,35 +10009,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10611,7 +10051,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19876, @@ -10620,36 +10059,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10663,7 +10102,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19897, @@ -10672,51 +10110,50 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xffffffffffffffffffffffffffffffffffffffff", + ], + memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", + "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19898, @@ -10725,36 +10162,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10768,7 +10205,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19899, @@ -10777,37 +10213,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10821,7 +10257,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19920, @@ -10830,38 +10265,38 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10875,7 +10310,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19921, @@ -10884,37 +10318,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10928,7 +10362,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19922, @@ -10937,36 +10370,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -10980,7 +10413,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19923, @@ -10989,36 +10421,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11032,7 +10464,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19926, @@ -11041,37 +10472,37 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004e27", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1", + "0x4e27", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11085,7 +10516,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20007, @@ -11094,35 +10524,35 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11136,7 +10566,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20008, @@ -11145,35 +10574,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11187,7 +10616,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20009, @@ -11196,36 +10624,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11239,7 +10667,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20030, @@ -11248,37 +10675,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11292,7 +10719,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20031, @@ -11301,36 +10727,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11344,7 +10770,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20032, @@ -11353,37 +10778,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11397,7 +10822,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20053, @@ -11406,38 +10830,38 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11451,7 +10875,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20054, @@ -11460,37 +10883,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11504,7 +10927,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20055, @@ -11513,36 +10935,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11556,7 +10978,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20058, @@ -11565,37 +10986,37 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004e61", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x4e61", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11609,7 +11030,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20059, @@ -11618,35 +11038,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11660,7 +11080,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20060, @@ -11669,36 +11088,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11712,7 +11131,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20061, @@ -11721,37 +11139,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11765,7 +11183,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20064, @@ -11774,38 +11191,38 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000004e64", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x4e64", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11819,7 +11236,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20068, @@ -11828,37 +11244,37 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11872,7 +11288,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20069, @@ -11881,37 +11296,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11925,7 +11340,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20070, @@ -11934,37 +11348,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -11978,7 +11392,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20071, @@ -11987,37 +11400,37 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12031,7 +11444,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20072, @@ -12040,36 +11452,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12083,7 +11495,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20073, @@ -12092,36 +11503,36 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12135,7 +11546,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20074, @@ -12144,35 +11554,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12186,7 +11596,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20095, @@ -12195,36 +11604,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12238,7 +11647,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20096, @@ -12247,37 +11655,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12291,7 +11699,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20097, @@ -12300,36 +11707,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12343,7 +11750,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20100, @@ -12352,37 +11758,37 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000004eeb", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x4eeb", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12396,7 +11802,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20203, @@ -12405,35 +11810,35 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12447,7 +11852,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20204, @@ -12456,35 +11860,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12498,7 +11902,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20205, @@ -12507,35 +11910,35 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12549,7 +11952,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20206, @@ -12558,34 +11960,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000052fa", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x52fa", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12599,7 +12001,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20207, @@ -12608,34 +12009,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000000000000000000052fa", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x52fa", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12649,7 +12050,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20208, @@ -12658,34 +12058,34 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000052fa", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x52fa", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12699,7 +12099,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20209, @@ -12708,33 +12107,33 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000052fa", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x52fa", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12748,7 +12147,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21242, @@ -12757,32 +12155,32 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12796,7 +12194,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21243, @@ -12805,32 +12202,32 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12844,7 +12241,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21244, @@ -12853,31 +12249,31 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12891,7 +12287,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21245, @@ -12900,31 +12295,31 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12938,7 +12333,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21246, @@ -12947,30 +12341,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -12984,7 +12378,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21248, @@ -12993,31 +12386,31 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13031,7 +12424,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21249, @@ -13040,32 +12432,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13079,7 +12471,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21252, @@ -13088,35 +12479,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - ], - memory: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + ], + memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000140", @@ -13128,7 +12519,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21253, @@ -13137,34 +12527,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13178,7 +12568,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21254, @@ -13187,35 +12576,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13229,7 +12618,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21255, @@ -13238,36 +12626,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13281,7 +12669,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21258, @@ -13290,37 +12677,37 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000000000000000000040c6", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x40c6", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13334,7 +12721,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16582, @@ -13343,36 +12729,36 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13386,7 +12772,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16583, @@ -13395,36 +12780,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13438,7 +12823,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16585, @@ -13447,37 +12831,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13491,7 +12875,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16586, @@ -13500,38 +12883,38 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13545,7 +12928,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16588, @@ -13554,39 +12936,39 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13600,7 +12982,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16591, @@ -13609,40 +12990,40 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13656,7 +13037,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16592, @@ -13665,41 +13045,41 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13713,7 +13093,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16593, @@ -13722,42 +13101,42 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13771,7 +13150,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16596, @@ -13780,43 +13158,43 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000004d9f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x4d9f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13830,7 +13208,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19871, @@ -13839,56 +13216,55 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + ], + memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19872, @@ -13897,42 +13273,42 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -13946,7 +13322,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19874, @@ -13955,43 +13330,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14005,7 +13380,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19875, @@ -14014,44 +13388,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14065,7 +13439,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19876, @@ -14074,45 +13447,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14126,7 +13499,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19897, @@ -14135,46 +13507,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14188,7 +13560,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19898, @@ -14197,45 +13568,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14249,7 +13620,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19899, @@ -14258,46 +13628,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14311,7 +13681,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19920, @@ -14320,47 +13689,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14374,7 +13743,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19921, @@ -14383,46 +13751,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14436,7 +13804,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19922, @@ -14445,45 +13812,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14497,7 +13864,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19923, @@ -14506,45 +13872,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14558,7 +13924,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 19926, @@ -14567,46 +13932,46 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004e27", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1", + "0x4e27", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14620,7 +13985,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20007, @@ -14629,44 +13993,44 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14680,7 +14044,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20008, @@ -14689,44 +14052,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14740,7 +14103,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20009, @@ -14749,45 +14111,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14801,7 +14163,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20030, @@ -14810,46 +14171,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14863,7 +14224,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20031, @@ -14872,45 +14232,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14924,7 +14284,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20032, @@ -14933,46 +14292,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -14986,7 +14345,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20053, @@ -14995,47 +14353,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15049,7 +14407,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20054, @@ -15058,46 +14415,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15111,7 +14468,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20055, @@ -15120,59 +14476,58 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + ], + memory: [ "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20058, @@ -15181,46 +14536,46 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004e61", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x4e61", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15234,7 +14589,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20059, @@ -15243,44 +14597,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15294,7 +14648,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20060, @@ -15303,45 +14656,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15355,7 +14708,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20061, @@ -15364,46 +14716,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15417,7 +14769,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20064, @@ -15426,47 +14777,47 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000004e64", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x4e64", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15480,7 +14831,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20068, @@ -15489,46 +14839,46 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15542,7 +14892,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20069, @@ -15551,46 +14900,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15604,7 +14953,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20070, @@ -15613,46 +14961,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15666,7 +15014,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20071, @@ -15675,46 +15022,46 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15728,7 +15075,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20072, @@ -15737,59 +15083,58 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + ], + memory: [ "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20073, @@ -15798,45 +15143,45 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15850,7 +15195,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20074, @@ -15859,44 +15203,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15910,7 +15254,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20095, @@ -15919,45 +15262,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -15971,7 +15314,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20096, @@ -15980,46 +15322,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16033,7 +15375,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20097, @@ -16042,45 +15383,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16094,7 +15435,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20100, @@ -16103,46 +15443,46 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000004eeb", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x4eeb", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16156,7 +15496,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20203, @@ -16165,44 +15504,44 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16216,7 +15555,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20204, @@ -16225,44 +15563,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16276,7 +15614,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20205, @@ -16285,44 +15622,44 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16336,7 +15673,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20206, @@ -16345,43 +15681,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000040d5", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x40d5", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16395,7 +15731,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20207, @@ -16403,103 +15738,102 @@ export const trace: TurboGethTrace = { gas: 131785, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000000000000000000040d5", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 20208, - op: "POP", - gas: 131782, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x40d5", + ], + memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000040d5", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0000000000000000000000000000000000000000000000000000000000000000", + ], + }, + { + pc: 20208, + op: "POP", + gas: 131782, + gasCost: 2, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40d5", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16513,7 +15847,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 20209, @@ -16522,42 +15855,42 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "00000000000000000000000000000000000000000000000000000000000040d5", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40d5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16571,7 +15904,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16597, @@ -16580,41 +15912,41 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16628,7 +15960,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16598, @@ -16637,41 +15968,41 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16685,7 +16016,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16600, @@ -16694,42 +16024,42 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16743,7 +16073,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16601, @@ -16752,43 +16081,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16802,7 +16131,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16602, @@ -16811,43 +16139,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16861,7 +16189,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16635, @@ -16870,44 +16197,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16921,7 +16248,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16637, @@ -16930,45 +16256,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -16982,7 +16308,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16638, @@ -16991,45 +16316,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17043,7 +16368,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16639, @@ -17052,46 +16376,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17105,7 +16429,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16640, @@ -17113,46 +16436,46 @@ export const trace: TurboGethTrace = { gas: 131747, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17166,7 +16489,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16641, @@ -17175,46 +16497,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17228,7 +16550,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16642, @@ -17237,45 +16558,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17289,7 +16610,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16644, @@ -17298,46 +16618,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17351,7 +16671,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16645, @@ -17360,47 +16679,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", + "0x20", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17414,7 +16733,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16646, @@ -17423,48 +16741,48 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", + "0x20", + "0x20", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17478,7 +16796,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16647, @@ -17487,47 +16804,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000160", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", + "0x20", + "0x160", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17541,7 +16858,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16648, @@ -17550,47 +16866,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000160", - "0000000000000000000000000000000000000000000000000000000000000020", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x160", + "0x20", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17604,7 +16920,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16649, @@ -17613,47 +16928,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000160", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x160", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17667,7 +16982,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16650, @@ -17676,47 +16990,47 @@ export const trace: TurboGethTrace = { gasCost: 9, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000160", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", + "0x160", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17729,10 +17043,7 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16651, @@ -17741,108 +17052,107 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16652, - op: "DUP6", - gas: 131708, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + ], + memory: [ "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", + ], + }, + { + pc: 16652, + op: "DUP6", + gas: 131708, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17858,7 +17168,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", ], - storage: {}, }, { pc: 16653, @@ -17867,46 +17176,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17922,7 +17231,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", ], - storage: {}, }, { pc: 16654, @@ -17931,45 +17239,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -17985,7 +17293,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", ], - storage: {}, }, { pc: 16655, @@ -17994,46 +17301,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18049,7 +17356,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", ], - storage: {}, }, { pc: 16656, @@ -18058,45 +17364,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18112,7 +17418,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", ], - storage: {}, }, { pc: 16658, @@ -18121,46 +17426,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", + "0x34", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18176,7 +17481,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", ], - storage: {}, }, { pc: 16659, @@ -18185,47 +17489,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", + "0x34", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18241,7 +17545,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", ], - storage: {}, }, { pc: 16660, @@ -18250,46 +17553,46 @@ export const trace: TurboGethTrace = { gasCost: 6, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000174", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000", + "0x174", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18304,9 +17607,7 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16661, @@ -18315,44 +17616,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18369,7 +17670,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16662, @@ -18378,45 +17678,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18433,7 +17733,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16663, @@ -18442,110 +17741,109 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16665, - op: "DUP2", - gas: 131672, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", + "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", + "27ead9083c756cc2000000000000000000000000000000000000000000000000", + ], + }, + { + pc: 16665, + op: "DUP2", + gas: 131672, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", + "0x28", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18562,7 +17860,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16666, @@ -18571,47 +17868,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", + "0x28", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18628,7 +17925,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16667, @@ -18637,48 +17933,48 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", + "0x28", + "0x140", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18695,7 +17991,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16668, @@ -18704,47 +17999,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", + "0x28", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18761,7 +18056,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16669, @@ -18770,46 +18064,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", + "0x28", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18826,7 +18120,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16670, @@ -18835,47 +18128,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", + "0x28", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18892,7 +18185,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16671, @@ -18901,45 +18193,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -18956,7 +18248,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16673, @@ -18965,46 +18256,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000048", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", + "0x48", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19021,7 +18312,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16674, @@ -19030,47 +18320,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000048", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", + "0x48", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19087,7 +18377,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16675, @@ -19096,46 +18385,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000188", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", + "0x188", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19147,61 +18436,60 @@ export const trace: TurboGethTrace = { "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16676, - op: "MSTORE", - gas: 131642, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000028", + "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", + "27ead9083c756cc2000000000000000000000000000000000000000000000000", + ], + }, + { + pc: 16676, + op: "MSTORE", + gas: 131642, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", + "0x188", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19218,7 +18506,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16677, @@ -19227,45 +18514,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19282,7 +18569,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16678, @@ -19291,46 +18577,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19347,7 +18633,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16679, @@ -19356,46 +18641,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000028", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x140", + "0x28", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19412,7 +18697,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16680, @@ -19421,46 +18705,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x28", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19477,7 +18761,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16681, @@ -19486,47 +18769,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x28", + "0x140", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19543,55 +18826,54 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16682, - op: "SHA3", + op: "KECCAK256", gas: 131624, gasCost: 42, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000160", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x28", + "0x160", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19608,7 +18890,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16683, @@ -19617,45 +18898,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19672,7 +18953,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16716, @@ -19681,46 +18961,46 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "ff00000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xff00000000000000000000000000000000000000000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19737,7 +19017,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16718, @@ -19746,47 +19025,47 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "ff00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000068", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xff00000000000000000000000000000000000000000000000000000000000000", + "0x68", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19803,7 +19082,6 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16719, @@ -19812,114 +19090,113 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "ff00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000068", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xff00000000000000000000000000000000000000000000000000000000000000", + "0x68", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000188", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16720, - op: "MSTORE", - gas: 131570, - gasCost: 9, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "ff00000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a8", + "0000000000000000000000000000000000000000000000000000000000000028", + "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", + "27ead9083c756cc2000000000000000000000000000000000000000000000000", + ], + }, + { + pc: 16720, + op: "MSTORE", + gas: 131570, + gasCost: 9, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xff00000000000000000000000000000000000000000000000000000000000000", + "0x1a8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -19935,10 +19212,7 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000028", "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16721, @@ -19947,45 +19221,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20004,7 +19278,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16722, @@ -20013,45 +19286,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20070,7 +19343,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16723, @@ -20079,45 +19351,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x60", + "0x20", + "0x40", + "0x140", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20136,7 +19408,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16724, @@ -20145,45 +19416,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + "0x40", + "0x140", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20202,7 +19473,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16725, @@ -20211,44 +19481,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000140", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + "0x40", + "0x140", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20267,7 +19537,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16726, @@ -20276,44 +19545,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20332,7 +19601,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16727, @@ -20341,44 +19609,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffff000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20397,7 +19665,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16728, @@ -20406,43 +19673,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20461,7 +19728,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16730, @@ -20470,44 +19736,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000069", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x69", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20526,7 +19792,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16731, @@ -20535,110 +19800,109 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000069", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x69", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff0000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 16732, - op: "MSTORE", - gas: 131531, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000188", "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000028", + "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", + "27ead9083c756cc2000000000000000000000000000000000000000000000000", + "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a9", + ], + }, + { + pc: 16732, + op: "MSTORE", + gas: 131531, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x40", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000", + "0x1a9", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20657,7 +19921,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff0000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16733, @@ -20666,42 +19929,42 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20720,7 +19983,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16735, @@ -20729,43 +19991,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000007d", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x40", + "0x7d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20784,7 +20046,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16736, @@ -20793,44 +20054,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000000000000000007d", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x40", + "0x7d", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20849,7 +20110,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16737, @@ -20858,43 +20118,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000001bd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x40", + "0x1bd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20913,7 +20173,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16738, @@ -20922,43 +20181,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "00000000000000000000000000000000000000000000000000000000000001bd", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000040", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x1bd", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x40", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -20977,7 +20236,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16739, @@ -20986,43 +20244,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "00000000000000000000000000000000000000000000000000000000000001bd", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x1bd", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21041,7 +20299,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16740, @@ -21050,43 +20307,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "f922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", - "00000000000000000000000000000000000000000000000000000000000001bd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0xf922e09c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995", + "0x1bd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21105,7 +20362,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16741, @@ -21114,41 +20370,41 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21167,7 +20423,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", ], - storage: {}, }, { pc: 16774, @@ -21176,42 +20431,42 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21230,7 +20485,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", ], - storage: {}, }, { pc: 16776, @@ -21239,43 +20493,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21284,63 +20538,62 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", - ], - storage: {}, - }, - { - pc: 16777, - op: "DUP5", - gas: 131498, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000009d", + "0000000000000000000000000000000000000000000000000000000000000028", + "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", + "27ead9083c756cc2000000000000000000000000000000000000000000000000", + "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", + "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", + ], + }, + { + pc: 16777, + op: "DUP5", + gas: 131498, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d", + "0x9d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21359,7 +20612,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", ], - storage: {}, }, { pc: 16778, @@ -21368,45 +20620,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d", + "0x9d", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21425,7 +20677,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", ], - storage: {}, }, { pc: 16779, @@ -21434,44 +20685,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", - "00000000000000000000000000000000000000000000000000000000000001dd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d", + "0x1dd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21490,7 +20741,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", ], - storage: {}, }, { pc: 16780, @@ -21499,44 +20749,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001dd", - "000000000000000000000000000000000000000000000000000000000000009d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x1dd", + "0x9d", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21555,7 +20805,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", ], - storage: {}, }, { pc: 16781, @@ -21564,44 +20813,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001dd", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "000000000000000000000000000000000000000000000000000000000000009d", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x1dd", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x9d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21620,7 +20869,6 @@ export const trace: TurboGethTrace = { "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", ], - storage: {}, }, { pc: 16782, @@ -21629,44 +20877,44 @@ export const trace: TurboGethTrace = { gasCost: 6, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", - "00000000000000000000000000000000000000000000000000000000000001dd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x9d", + "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f", + "0x1dd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21684,9 +20932,7 @@ export const trace: TurboGethTrace = { "27ead9083c756cc2000000000000000000000000000000000000000000000000", "0000000000000000ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec995000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 16783, @@ -21695,42 +20941,42 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x9d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21750,7 +20996,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16784, @@ -21759,43 +21004,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x9d", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21815,7 +21060,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16785, @@ -21824,43 +21068,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000188", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x9d", + "0x188", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21880,7 +21124,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16786, @@ -21889,44 +21132,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000188", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x9d", + "0x188", + "0x188", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -21946,7 +21189,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16787, @@ -21955,45 +21197,45 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x9d", + "0x188", + "0x188", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22013,54 +21255,53 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, - }, - { - pc: 16788, - op: "SWAP1", - gas: 131462, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "0000000000000000000000000000000000000000000000000000000000000188", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - ], + }, + { + pc: 16788, + op: "SWAP1", + gas: 131462, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x9d", + "0x188", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", + ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -22079,7 +21320,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16789, @@ -22088,44 +21328,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000009d", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - "0000000000000000000000000000000000000000000000000000000000000188", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x9d", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", + "0x188", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22145,7 +21385,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16790, @@ -22154,44 +21393,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000188", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", - "000000000000000000000000000000000000000000000000000000000000009d", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x188", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8", + "0x9d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22211,7 +21450,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16791, @@ -22220,43 +21458,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000055", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x188", + "0x55", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22276,7 +21514,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16792, @@ -22285,44 +21522,44 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000055", - "0000000000000000000000000000000000000000000000000000000000000188", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x188", + "0x55", + "0x188", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22342,7 +21579,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16793, @@ -22351,42 +21587,42 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000188", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x188", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22406,7 +21642,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16795, @@ -22415,43 +21650,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000188", - "00000000000000000000000000000000000000000000000000000000000000bd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0x188", + "0xbd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22471,7 +21706,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16796, @@ -22480,43 +21714,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000140", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000bd", - "0000000000000000000000000000000000000000000000000000000000000188", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x140", + "0x20", + "0xbd", + "0x188", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22536,7 +21770,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16797, @@ -22545,43 +21778,43 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000bd", - "0000000000000000000000000000000000000000000000000000000000000140", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x188", + "0x20", + "0xbd", + "0x140", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22601,7 +21834,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16798, @@ -22610,42 +21842,42 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x188", + "0x20", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22665,7 +21897,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16799, @@ -22674,42 +21905,42 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x40", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x188", + "0x1fd", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22722,58 +21953,57 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000030927f74c9de0000", "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000028", - "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 16800, - op: "MSTORE", - gas: 131429, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000028", + "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", + "27ead9083c756cc2000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", + "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + ], + }, + { + pc: 16800, + op: "MSTORE", + gas: 131429, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x20", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x188", + "0x1fd", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22793,7 +22023,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16801, @@ -22802,40 +22031,40 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x20", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x188", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22855,7 +22084,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16802, @@ -22864,41 +22092,41 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000188", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x20", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x188", + "0x188", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22918,7 +22146,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16803, @@ -22927,41 +22154,41 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000055", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x20", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x188", + "0x55", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -22981,7 +22208,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16804, @@ -22990,41 +22216,41 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000055", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000188", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x55", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x188", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23044,7 +22270,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16805, @@ -23053,40 +22278,40 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000055", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001a8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x55", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x1a8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23106,7 +22331,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16806, @@ -23115,40 +22339,40 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "00000000000000000000000000000000000000000000000000000000000001a8", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x1a8", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", + "0x55", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23168,7 +22392,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16807, @@ -23177,40 +22400,40 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "00000000000000000000000000000000000000000000000000000000000001a8", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x1a8", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x55", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23230,49 +22453,48 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16808, - op: "SHA3", + op: "KECCAK256", gas: 131405, gasCost: 48, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000055", - "00000000000000000000000000000000000000000000000000000000000001a8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x0", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x55", + "0x1a8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23292,7 +22514,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16809, @@ -23301,39 +22522,39 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", + "0x0", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23353,7 +22574,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16810, @@ -23362,39 +22582,39 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000530b", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x0", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x530b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23414,7 +22634,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16811, @@ -23423,39 +22642,39 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000000530b", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x530b", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23475,48 +22694,47 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, - }, - { - pc: 16812, - op: "POP", - gas: 131349, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000000530b", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + }, + { + pc: 16812, + op: "POP", + gas: 131349, + gasCost: 2, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x530b", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -23535,7 +22753,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16813, @@ -23544,37 +22761,37 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000000530b", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x530b", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23594,7 +22811,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16814, @@ -23603,36 +22819,36 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000000530b", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x530b", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23652,7 +22868,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16815, @@ -23661,35 +22876,35 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000000530b", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x530b", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23709,7 +22924,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 16816, @@ -23718,34 +22932,34 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000000530b", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x530b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23765,7 +22979,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 21259, @@ -23774,33 +22987,33 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23820,7 +23033,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 21260, @@ -23829,33 +23041,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23875,7 +23087,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 21281, @@ -23884,34 +23095,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "c9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xc9adfff6a345d85c3aceb01e6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23931,7 +23142,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 21282, @@ -23940,33 +23150,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -23986,7 +23196,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 21287, @@ -23995,34 +23204,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24042,7 +23251,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 21289, @@ -24051,35 +23259,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24099,7 +23307,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 21290, @@ -24108,35 +23315,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24156,7 +23363,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 21291, @@ -24165,36 +23371,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "000000000000000000000000000000000000000000000000000000000902f1ac", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x1fd", + "0x902f1ac", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24214,7 +23420,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 21296, @@ -24223,37 +23428,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000ffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x1fd", + "0x902f1ac", + "0xffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24273,7 +23478,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 21297, @@ -24282,36 +23486,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "000000000000000000000000000000000000000000000000000000000902f1ac", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x1fd", + "0x902f1ac", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24331,7 +23535,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 21299, @@ -24340,37 +23543,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x1fd", + "0x902f1ac", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24388,47 +23591,46 @@ export const trace: TurboGethTrace = { "27ead9083c756cc2000000000000000000000000000000000000000000000000", "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - ], - storage: {}, - }, - { - pc: 21300, - op: "DUP2", - gas: 131302, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0902f1ac00000000000000000000000000000000000000000000000000000000", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + ], + }, + { + pc: 21300, + op: "DUP2", + gas: 131302, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x1fd", + "0x902f1ac00000000000000000000000000000000000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24448,7 +23650,6 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", ], - storage: {}, }, { pc: 21301, @@ -24457,37 +23658,37 @@ export const trace: TurboGethTrace = { gasCost: 6, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0902f1ac00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x1fd", + "0x902f1ac00000000000000000000000000000000000000000000000000000000", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24506,9 +23707,7 @@ export const trace: TurboGethTrace = { "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21302, @@ -24517,35 +23716,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24566,7 +23765,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21304, @@ -24575,36 +23773,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x1fd", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24625,7 +23823,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21305, @@ -24634,35 +23831,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24683,7 +23880,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21307, @@ -24692,36 +23888,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24742,7 +23938,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21309, @@ -24751,37 +23946,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24802,7 +23997,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21310, @@ -24811,37 +24005,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24862,7 +24056,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21311, @@ -24871,38 +24064,38 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24923,7 +24116,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21312, @@ -24932,39 +24124,39 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000201", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x1fd", + "0x201", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -24985,7 +24177,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21313, @@ -24994,38 +24185,38 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25046,7 +24237,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21314, @@ -25055,39 +24245,39 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25108,7 +24298,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21315, @@ -25117,40 +24306,40 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", + "0x1fd", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25171,7 +24360,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21316, @@ -25180,41 +24368,41 @@ export const trace: TurboGethTrace = { gasCost: 700, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", + "0x1fd", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25235,7 +24423,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21317, @@ -25244,41 +24431,41 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000002c1d", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", + "0x1fd", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x2c1d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25293,56 +24480,55 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000028", "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", - "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", - "ac00000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, - }, - { - pc: 21318, - op: "DUP1", - gas: 130557, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", + "27ead9083c756cc2000000000000000000000000000000000000000000000000", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", + "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", + "ac00000000000000000000000000000000000000000000000000000000000000", + ], + }, + { + pc: 21318, + op: "DUP1", + gas: 130557, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", + "0x1fd", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25363,7 +24549,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21319, @@ -25372,42 +24557,42 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", + "0x1fd", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25428,7 +24613,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21320, @@ -25437,42 +24621,42 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", + "0x1fd", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25493,7 +24677,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21323, @@ -25502,43 +24685,43 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005350", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", + "0x1fd", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x0", + "0x1", + "0x5350", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25559,7 +24742,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21328, @@ -25568,41 +24750,41 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", + "0x1fd", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25623,7 +24805,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21329, @@ -25632,41 +24813,41 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", + "0x1fd", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25687,7 +24868,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21330, @@ -25696,40 +24876,40 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", + "0x1fd", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25750,7 +24930,6 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 21331, @@ -25759,41 +24938,41 @@ export const trace: TurboGethTrace = { gasCost: 128505, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000001fde5", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x60", + "0x1fd", + "0x4", + "0x1fd", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x1fde5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -25813,10 +24992,7 @@ export const trace: TurboGethTrace = { "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f0902f1", "ac00000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 0, @@ -25825,8 +25001,6 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [], - memory: [], - storage: {}, }, { pc: 2, @@ -25834,11 +25008,7 @@ export const trace: TurboGethTrace = { gas: 127796, gasCost: 3, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, + stack: ["0x80"], }, { pc: 4, @@ -25846,16 +25016,7 @@ export const trace: TurboGethTrace = { gas: 127793, gasCost: 12, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, + stack: ["0x80", "0x40"], }, { pc: 5, @@ -25869,7 +25030,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 6, @@ -25877,15 +25037,12 @@ export const trace: TurboGethTrace = { gas: 127779, gasCost: 3, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 7, @@ -25893,16 +25050,12 @@ export const trace: TurboGethTrace = { gas: 127776, gasCost: 3, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8, @@ -25910,16 +25063,12 @@ export const trace: TurboGethTrace = { gas: 127773, gasCost: 3, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x0", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 11, @@ -25927,17 +25076,12 @@ export const trace: TurboGethTrace = { gas: 127770, gasCost: 10, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010", - ], + stack: ["0x0", "0x1", "0x10"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 16, @@ -25945,15 +25089,12 @@ export const trace: TurboGethTrace = { gas: 127760, gasCost: 1, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 17, @@ -25961,15 +25102,12 @@ export const trace: TurboGethTrace = { gas: 127759, gasCost: 2, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 18, @@ -25983,7 +25121,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 20, @@ -25991,15 +25128,12 @@ export const trace: TurboGethTrace = { gas: 127754, gasCost: 2, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 21, @@ -26007,16 +25141,12 @@ export const trace: TurboGethTrace = { gas: 127752, gasCost: 3, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x4", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 22, @@ -26024,15 +25154,12 @@ export const trace: TurboGethTrace = { gas: 127749, gasCost: 3, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 25, @@ -26040,16 +25167,12 @@ export const trace: TurboGethTrace = { gas: 127746, gasCost: 10, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001b9", - ], + stack: ["0x0", "0x1b9"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 26, @@ -26063,7 +25186,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 28, @@ -26071,15 +25193,12 @@ export const trace: TurboGethTrace = { gas: 127733, gasCost: 3, depth: 2, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 29, @@ -26088,14 +25207,13 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "0902f1ac00000000000000000000000000000000000000000000000000000000", + "0x902f1ac00000000000000000000000000000000000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 31, @@ -26104,15 +25222,14 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "0902f1ac00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x902f1ac00000000000000000000000000000000000000000000000000000000", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 32, @@ -26120,15 +25237,12 @@ export const trace: TurboGethTrace = { gas: 127724, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 33, @@ -26136,16 +25250,12 @@ export const trace: TurboGethTrace = { gas: 127721, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac", "0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 38, @@ -26153,17 +25263,12 @@ export const trace: TurboGethTrace = { gas: 127718, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000006a627842", - ], + stack: ["0x902f1ac", "0x902f1ac", "0x6a627842"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 39, @@ -26171,16 +25276,12 @@ export const trace: TurboGethTrace = { gas: 127715, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x902f1ac", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 42, @@ -26188,17 +25289,12 @@ export const trace: TurboGethTrace = { gas: 127712, gasCost: 10, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000f9", - ], + stack: ["0x902f1ac", "0x1", "0xf9"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 249, @@ -26206,15 +25302,12 @@ export const trace: TurboGethTrace = { gas: 127702, gasCost: 1, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 250, @@ -26222,15 +25315,12 @@ export const trace: TurboGethTrace = { gas: 127701, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 251, @@ -26238,16 +25328,12 @@ export const trace: TurboGethTrace = { gas: 127698, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac", "0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 256, @@ -26255,17 +25341,12 @@ export const trace: TurboGethTrace = { gas: 127695, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000023b872dd", - ], + stack: ["0x902f1ac", "0x902f1ac", "0x23b872dd"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 257, @@ -26273,16 +25354,12 @@ export const trace: TurboGethTrace = { gas: 127692, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x902f1ac", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 260, @@ -26290,17 +25367,12 @@ export const trace: TurboGethTrace = { gas: 127689, gasCost: 10, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000166", - ], + stack: ["0x902f1ac", "0x1", "0x166"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 358, @@ -26308,15 +25380,12 @@ export const trace: TurboGethTrace = { gas: 127679, gasCost: 1, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 359, @@ -26324,15 +25393,12 @@ export const trace: TurboGethTrace = { gas: 127678, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 360, @@ -26340,16 +25406,12 @@ export const trace: TurboGethTrace = { gas: 127675, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac", "0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 365, @@ -26357,17 +25419,12 @@ export const trace: TurboGethTrace = { gas: 127672, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000095ea7b3", - ], + stack: ["0x902f1ac", "0x902f1ac", "0x95ea7b3"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 366, @@ -26375,16 +25432,12 @@ export const trace: TurboGethTrace = { gas: 127669, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x902f1ac", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 369, @@ -26392,17 +25445,12 @@ export const trace: TurboGethTrace = { gas: 127666, gasCost: 10, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000197", - ], + stack: ["0x902f1ac", "0x1", "0x197"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 407, @@ -26410,15 +25458,12 @@ export const trace: TurboGethTrace = { gas: 127656, gasCost: 1, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 408, @@ -26426,15 +25471,12 @@ export const trace: TurboGethTrace = { gas: 127655, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 409, @@ -26442,16 +25484,12 @@ export const trace: TurboGethTrace = { gas: 127652, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac", "0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 414, @@ -26459,17 +25497,12 @@ export const trace: TurboGethTrace = { gas: 127649, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000022c0d9f", - ], + stack: ["0x902f1ac", "0x902f1ac", "0x22c0d9f"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 415, @@ -26477,16 +25510,12 @@ export const trace: TurboGethTrace = { gas: 127646, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x902f1ac", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 418, @@ -26494,17 +25523,12 @@ export const trace: TurboGethTrace = { gas: 127643, gasCost: 10, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001be", - ], + stack: ["0x902f1ac", "0x0", "0x1be"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 419, @@ -26512,15 +25536,12 @@ export const trace: TurboGethTrace = { gas: 127633, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 420, @@ -26528,16 +25549,12 @@ export const trace: TurboGethTrace = { gas: 127630, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac", "0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 425, @@ -26545,17 +25562,12 @@ export const trace: TurboGethTrace = { gas: 127627, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000006fdde03", - ], + stack: ["0x902f1ac", "0x902f1ac", "0x6fdde03"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 426, @@ -26563,16 +25575,12 @@ export const trace: TurboGethTrace = { gas: 127624, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x902f1ac", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 429, @@ -26580,17 +25588,12 @@ export const trace: TurboGethTrace = { gas: 127621, gasCost: 10, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000259", - ], + stack: ["0x902f1ac", "0x0", "0x259"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 430, @@ -26598,15 +25601,12 @@ export const trace: TurboGethTrace = { gas: 127611, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 431, @@ -26614,16 +25614,12 @@ export const trace: TurboGethTrace = { gas: 127608, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac", "0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 436, @@ -26631,17 +25627,12 @@ export const trace: TurboGethTrace = { gas: 127605, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac", "0x902f1ac", "0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 437, @@ -26649,16 +25640,12 @@ export const trace: TurboGethTrace = { gas: 127602, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x902f1ac", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 440, @@ -26666,17 +25653,12 @@ export const trace: TurboGethTrace = { gas: 127599, gasCost: 10, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000002d6", - ], + stack: ["0x902f1ac", "0x1", "0x2d6"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 726, @@ -26684,15 +25666,12 @@ export const trace: TurboGethTrace = { gas: 127589, gasCost: 1, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 727, @@ -26700,15 +25679,12 @@ export const trace: TurboGethTrace = { gas: 127588, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - ], + stack: ["0x902f1ac"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 730, @@ -26716,16 +25692,12 @@ export const trace: TurboGethTrace = { gas: 127585, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - ], + stack: ["0x902f1ac", "0x2de"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 733, @@ -26733,17 +25705,12 @@ export const trace: TurboGethTrace = { gas: 127582, gasCost: 8, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000000000d90", - ], + stack: ["0x902f1ac", "0x2de", "0xd90"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 3472, @@ -26751,16 +25718,12 @@ export const trace: TurboGethTrace = { gas: 127574, gasCost: 1, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - ], + stack: ["0x902f1ac", "0x2de"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 3473, @@ -26768,16 +25731,12 @@ export const trace: TurboGethTrace = { gas: 127573, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - ], + stack: ["0x902f1ac", "0x2de"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 3475, @@ -26785,11 +25744,7 @@ export const trace: TurboGethTrace = { gas: 127570, gasCost: 800, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000000000000000000008", - ], + stack: ["0x902f1ac", "0x2de", "0x8"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -26807,19 +25762,15 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0x902f1ac", + "0x2de", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3491, @@ -26828,20 +25779,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", + "0x902f1ac", + "0x2de", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0xffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3492, @@ -26850,21 +25797,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", + "0x902f1ac", + "0x2de", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0xffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3493, @@ -26873,22 +25816,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0x902f1ac", + "0x2de", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0xffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffff", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3494, @@ -26897,21 +25836,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x902f1ac", + "0x2de", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0xffffffffffffffffffffffffffff", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3495, @@ -26920,21 +25855,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0xffffffffffffffffffffffffffff", + "0x2de", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3511, @@ -26943,22 +25874,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000010000000000000000000000000000", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0xffffffffffffffffffffffffffff", + "0x2de", + "0x10000000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3512, @@ -26967,23 +25894,19 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000010000000000000000000000000000", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0xffffffffffffffffffffffffffff", + "0x2de", + "0x10000000000000000000000000000", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3513, @@ -26992,22 +25915,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000603d35de0000000000224d7c738030159074", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0xffffffffffffffffffffffffffff", + "0x2de", + "0x603d35de0000000000224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3514, @@ -27016,22 +25935,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000603d35de0000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0xffffffffffffffffffffffffffff", + "0x603d35de0000000000224d7c738030159074", + "0x2de", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3515, @@ -27040,22 +25955,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000603d35de0000000000224d7c738030159074", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0x2de", + "0x603d35de0000000000224d7c738030159074", + "0xffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3516, @@ -27064,21 +25975,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0x2de", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3517, @@ -27087,21 +25994,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x2de", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3547, @@ -27110,22 +26013,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - "0000000100000000000000000000000000000000000000000000000000000000", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x2de", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0x100000000000000000000000000000000000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3548, @@ -27134,22 +26033,18 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - "0000000100000000000000000000000000000000000000000000000000000000", - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x2de", + "0x100000000000000000000000000000000000000000000000000000000", + "0x603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3549, @@ -27158,21 +26053,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - "00000000000000000000000000000000000000000000000000000000603d35de", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x2de", + "0x603d35de", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3554, @@ -27181,22 +26072,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - "00000000000000000000000000000000000000000000000000000000603d35de", - "00000000000000000000000000000000000000000000000000000000ffffffff", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x2de", + "0x603d35de", + "0xffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3555, @@ -27205,21 +26092,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000002de", - "00000000000000000000000000000000000000000000000000000000603d35de", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x2de", + "0x603d35de", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 3556, @@ -27228,21 +26111,17 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "00000000000000000000000000000000000000000000000000000000000002de", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x603d35de", + "0x2de", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 734, @@ -27251,20 +26130,16 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x603d35de", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 735, @@ -27273,20 +26148,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x603d35de", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 737, @@ -27295,21 +26166,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x603d35de", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 738, @@ -27318,22 +26185,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x603d35de", + "0x40", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 739, @@ -27342,22 +26205,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x603d35de", + "0x40", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 754, @@ -27366,23 +26225,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", + "0x902f1ac", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x603d35de", + "0x40", + "0x80", + "0xffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 755, @@ -27391,23 +26246,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x224d7c738030159074", + "0x603d35de", + "0x40", + "0x80", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 756, @@ -27416,24 +26267,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x224d7c738030159074", + "0x603d35de", + "0x40", + "0x80", + "0x765cae9b95023644dde4", + "0xffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 757, @@ -27442,23 +26289,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x224d7c738030159074", + "0x603d35de", + "0x40", + "0x80", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 758, @@ -27467,26 +26310,20 @@ export const trace: TurboGethTrace = { gasCost: 9, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x224d7c738030159074", + "0x603d35de", + "0x40", + "0x80", + "0x765cae9b95023644dde4", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 759, @@ -27495,12 +26332,12 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x224d7c738030159074", + "0x603d35de", + "0x40", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27509,10 +26346,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000765cae9b95023644dde4", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 760, @@ -27521,12 +26354,12 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x80", + "0x603d35de", + "0x40", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27535,10 +26368,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000765cae9b95023644dde4", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 761, @@ -27547,12 +26376,12 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x902f1ac", + "0xffffffffffffffffffffffffffff", + "0x80", + "0x603d35de", + "0x224d7c738030159074", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27561,10 +26390,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000765cae9b95023644dde4", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 762, @@ -27573,12 +26398,12 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", + "0x902f1ac", + "0x40", + "0x80", + "0x603d35de", + "0x224d7c738030159074", + "0xffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27587,10 +26412,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000765cae9b95023644dde4", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 763, @@ -27599,11 +26420,11 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x902f1ac", + "0x40", + "0x80", + "0x603d35de", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27612,10 +26433,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000765cae9b95023644dde4", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 765, @@ -27624,12 +26441,12 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x902f1ac", + "0x40", + "0x80", + "0x603d35de", + "0x224d7c738030159074", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27638,10 +26455,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000765cae9b95023644dde4", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 766, @@ -27650,13 +26463,13 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x902f1ac", + "0x40", + "0x80", + "0x603d35de", + "0x224d7c738030159074", + "0x20", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27665,10 +26478,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000765cae9b95023644dde4", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 767, @@ -27677,12 +26486,12 @@ export const trace: TurboGethTrace = { gasCost: 6, depth: 2, stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0x902f1ac", + "0x40", + "0x80", + "0x603d35de", + "0x224d7c738030159074", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -27690,12 +26499,7 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 768, @@ -27703,24 +26507,15 @@ export const trace: TurboGethTrace = { gas: 126643, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], + stack: ["0x902f1ac", "0x40", "0x80", "0x603d35de"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, + "0000000000000000000000000000000000000000000000224d7c738030159074", + ], }, { pc: 773, @@ -27728,13 +26523,7 @@ export const trace: TurboGethTrace = { gas: 126640, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "00000000000000000000000000000000000000000000000000000000ffffffff", - ], + stack: ["0x902f1ac", "0x40", "0x80", "0x603d35de", "0xffffffff"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -27743,10 +26532,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000765cae9b95023644dde4", "0000000000000000000000000000000000000000000000224d7c738030159074", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 774, @@ -27754,12 +26539,7 @@ export const trace: TurboGethTrace = { gas: 126637, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - ], + stack: ["0x902f1ac", "0x40", "0x80", "0x603d35de"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -27768,10 +26548,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000765cae9b95023644dde4", "0000000000000000000000000000000000000000000000224d7c738030159074", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 775, @@ -27779,13 +26555,7 @@ export const trace: TurboGethTrace = { gas: 126634, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x902f1ac", "0x40", "0x80", "0x603d35de", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -27794,10 +26564,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000765cae9b95023644dde4", "0000000000000000000000000000000000000000000000224d7c738030159074", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 776, @@ -27805,14 +26571,7 @@ export const trace: TurboGethTrace = { gas: 126631, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], + stack: ["0x902f1ac", "0x40", "0x80", "0x603d35de", "0x80", "0x40"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -27821,10 +26580,6 @@ export const trace: TurboGethTrace = { "00000000000000000000000000000000000000000000765cae9b95023644dde4", "0000000000000000000000000000000000000000000000224d7c738030159074", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 777, @@ -27832,13 +26587,7 @@ export const trace: TurboGethTrace = { gas: 126628, gasCost: 6, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000603d35de", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0x902f1ac", "0x40", "0x80", "0x603d35de", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -27846,12 +26595,7 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000765cae9b95023644dde4", "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 778, @@ -27859,11 +26603,7 @@ export const trace: TurboGethTrace = { gas: 126622, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x902f1ac", "0x40", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -27873,10 +26613,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000224d7c738030159074", "00000000000000000000000000000000000000000000000000000000603d35de", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 779, @@ -27884,11 +26620,7 @@ export const trace: TurboGethTrace = { gas: 126619, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], + stack: ["0x902f1ac", "0x80", "0x40"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -27898,10 +26630,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000224d7c738030159074", "00000000000000000000000000000000000000000000000000000000603d35de", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 780, @@ -27909,11 +26637,7 @@ export const trace: TurboGethTrace = { gas: 126616, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x902f1ac", "0x80", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -27923,10 +26647,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000224d7c738030159074", "00000000000000000000000000000000000000000000000000000000603d35de", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 781, @@ -27934,11 +26654,7 @@ export const trace: TurboGethTrace = { gas: 126613, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x902f1ac", "0x80", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -27948,10 +26664,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000224d7c738030159074", "00000000000000000000000000000000000000000000000000000000603d35de", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 782, @@ -27959,12 +26671,7 @@ export const trace: TurboGethTrace = { gas: 126610, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x902f1ac", "0x80", "0x80", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -27974,10 +26681,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000224d7c738030159074", "00000000000000000000000000000000000000000000000000000000603d35de", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 783, @@ -27985,12 +26688,7 @@ export const trace: TurboGethTrace = { gas: 126607, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x902f1ac", "0x80", "0x80", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -28000,10 +26698,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000224d7c738030159074", "00000000000000000000000000000000000000000000000000000000603d35de", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 784, @@ -28011,11 +26705,7 @@ export const trace: TurboGethTrace = { gas: 126604, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x902f1ac", "0x80", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -28025,10 +26715,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000224d7c738030159074", "00000000000000000000000000000000000000000000000000000000603d35de", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 786, @@ -28036,12 +26722,7 @@ export const trace: TurboGethTrace = { gas: 126601, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000060", - ], + stack: ["0x902f1ac", "0x80", "0x0", "0x60"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -28051,10 +26732,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000224d7c738030159074", "00000000000000000000000000000000000000000000000000000000603d35de", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 787, @@ -28062,11 +26739,7 @@ export const trace: TurboGethTrace = { gas: 126598, gasCost: 3, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - ], + stack: ["0x902f1ac", "0x80", "0x60"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -28076,10 +26749,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000224d7c738030159074", "00000000000000000000000000000000000000000000000000000000603d35de", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 788, @@ -28087,11 +26756,7 @@ export const trace: TurboGethTrace = { gas: 126595, gasCost: 0, depth: 2, - stack: [ - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x902f1ac", "0x60", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -28101,10 +26766,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000224d7c738030159074", "00000000000000000000000000000000000000000000000000000000603d35de", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000008": - "603d35de0000000000224d7c73803015907400000000765cae9b95023644dde4", - }, }, { pc: 21332, @@ -28113,36 +26774,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28165,7 +26826,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21333, @@ -28174,36 +26834,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28226,7 +26886,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21334, @@ -28235,37 +26894,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28288,7 +26947,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21335, @@ -28297,37 +26955,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28350,7 +27008,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21338, @@ -28359,38 +27016,38 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000005364", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x0", + "0x1", + "0x5364", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28413,7 +27070,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21348, @@ -28422,36 +27078,36 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28474,7 +27130,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21349, @@ -28483,36 +27138,36 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28535,7 +27190,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21350, @@ -28544,35 +27198,35 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", - "0000000000000000000000000000000000000000000000000000000000000201", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", + "0x201", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28595,7 +27249,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21351, @@ -28604,34 +27257,34 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", - "000000000000000000000000000000000000000000000000000000000902f1ac", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x902f1ac", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28654,7 +27307,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21352, @@ -28663,33 +27315,33 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000006c8a55f67a7a6274d11e20bde30ee45049bdb570", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x6c8a55f67a7a6274d11e20bde30ee45049bdb570", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28712,7 +27364,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21353, @@ -28721,32 +27372,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28769,7 +27420,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21355, @@ -28778,33 +27428,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28827,7 +27477,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21356, @@ -28836,33 +27485,33 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28885,7 +27534,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21357, @@ -28894,34 +27542,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -28944,7 +27592,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21359, @@ -28953,35 +27600,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", + "0x60", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29004,7 +27651,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21360, @@ -29013,36 +27659,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", + "0x60", + "0x60", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29065,7 +27711,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21361, @@ -29074,35 +27719,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", + "0x60", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29125,7 +27770,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21362, @@ -29134,35 +27778,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", + "0x60", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29185,7 +27829,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21365, @@ -29194,36 +27837,36 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000537a", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", + "0x60", + "0x1", + "0x537a", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29246,7 +27889,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21370, @@ -29255,34 +27897,34 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29305,7 +27947,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21371, @@ -29314,34 +27955,34 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29364,7 +28005,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21372, @@ -29373,33 +28013,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29422,7 +28062,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21373, @@ -29431,34 +28070,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29481,7 +28120,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21374, @@ -29490,34 +28128,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29533,51 +28171,50 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000000000000000000000000028", "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", - "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21376, - op: "SWAP1", - gas: 128547, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", + "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "00000000000000000000000000000000000000765cae9b95023644dde4000000", + "0000000000000000000000000000000000000000224d7c738030159074000000", + "00000000000000000000000000000000000000000000000000603d35de000000", + ], + }, + { + pc: 21376, + op: "SWAP1", + gas: 128547, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", + "0x765cae9b95023644dde4", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29600,7 +28237,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21377, @@ -29609,35 +28245,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1fd", + "0x20", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29660,7 +28296,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21378, @@ -29669,35 +28304,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x765cae9b95023644dde4", + "0x20", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29720,7 +28355,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21379, @@ -29729,34 +28363,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000021d", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x765cae9b95023644dde4", + "0x21d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29779,7 +28413,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21380, @@ -29788,34 +28421,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29838,7 +28471,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21395, @@ -29847,35 +28479,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0xffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29898,7 +28530,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21396, @@ -29907,35 +28538,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffff", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -29958,7 +28589,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21397, @@ -29967,36 +28597,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffff", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30019,7 +28649,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21398, @@ -30028,35 +28657,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffff", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30079,7 +28708,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21399, @@ -30088,35 +28716,35 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x0", + "0xffffffffffffffffffffffffffff", + "0x224d7c738030159074", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30139,7 +28767,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21400, @@ -30148,34 +28775,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000ffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x0", + "0xffffffffffffffffffffffffffff", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30198,7 +28825,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21401, @@ -30207,33 +28833,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x0", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30256,7 +28882,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21402, @@ -30265,33 +28890,33 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30314,7 +28939,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21403, @@ -30323,32 +28947,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30371,7 +28995,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21424, @@ -30380,33 +29003,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30427,45 +29050,44 @@ export const trace: TurboGethTrace = { "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", "00000000000000000000000000000000000000765cae9b95023644dde4000000", "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21425, - op: "DUP2", - gas: 128504, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "00000000000000000000000000000000000000000000000000603d35de000000", + ], + }, + { + pc: 21425, + op: "DUP2", + gas: 128504, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30488,7 +29110,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21426, @@ -30497,35 +29118,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30548,7 +29169,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21427, @@ -30557,34 +29177,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0xffffffffffffffffffffffffffffffffffffffff", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30607,7 +29227,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21428, @@ -30616,34 +29235,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30666,7 +29285,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21429, @@ -30675,35 +29293,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30726,7 +29344,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21430, @@ -30735,34 +29352,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30785,7 +29402,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21431, @@ -30794,33 +29410,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30843,7 +29459,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21434, @@ -30852,34 +29467,34 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000053c1", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x0", + "0x53c1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30902,7 +29517,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21435, @@ -30911,32 +29525,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -30959,7 +29573,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21436, @@ -30968,33 +29581,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31017,7 +29630,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21437, @@ -31026,34 +29638,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31076,7 +29688,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21440, @@ -31085,35 +29696,35 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000000000000000000053c4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x53c4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31136,7 +29747,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21444, @@ -31145,34 +29755,34 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31195,7 +29805,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21445, @@ -31204,34 +29813,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31254,7 +29863,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21446, @@ -31263,34 +29871,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31307,49 +29915,48 @@ export const trace: TurboGethTrace = { "1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25fc02aaa39b223fe8d0a0e5c4f", "27ead9083c756cc2000000000000000000000000000000000000000000000000", "0000000000000055ff5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6ff922e0", - "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", - "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", - "00000000000000000000000000000000000000765cae9b95023644dde4000000", - "0000000000000000000000000000000000000000224d7c738030159074000000", - "00000000000000000000000000000000000000000000000000603d35de000000", - ], - storage: {}, - }, - { - pc: 21447, - op: "SWAP1", - gas: 128449, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", + "9c4e3c0db65349133a003f91022a71f98b0091aa617f527004578ec99596e8ac", + "4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f000000", + "00000000000000000000000000000000000000765cae9b95023644dde4000000", + "0000000000000000000000000000000000000000224d7c738030159074000000", + "00000000000000000000000000000000000000000000000000603d35de000000", + ], + }, + { + pc: 21447, + op: "SWAP1", + gas: 128449, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x4078", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31372,7 +29979,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21448, @@ -31381,34 +29987,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000004078", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x4078", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31431,7 +30037,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21449, @@ -31440,34 +30045,34 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x4078", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31490,7 +30095,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21450, @@ -31499,33 +30103,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000004078", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x4078", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31548,7 +30152,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21451, @@ -31557,33 +30160,33 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x4078", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31606,7 +30209,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21452, @@ -31615,32 +30217,32 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x4078", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31663,7 +30265,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21453, @@ -31672,31 +30273,31 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x4078", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31719,7 +30320,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21454, @@ -31728,30 +30328,30 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x4078", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31774,7 +30374,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21455, @@ -31783,29 +30382,29 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x4078", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31828,7 +30427,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21456, @@ -31837,28 +30435,28 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x4078", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31881,7 +30479,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21457, @@ -31890,27 +30487,27 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", - "0000000000000000000000001c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x4078", + "0x1c9491865a1de77c5b6e19d2e6a5f1d7a6f2b25f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31933,7 +30530,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21458, @@ -31942,26 +30538,26 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000004078", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x4078", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -31984,7 +30580,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16504, @@ -31993,25 +30588,25 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32034,7 +30629,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16505, @@ -32043,25 +30637,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32084,7 +30678,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16506, @@ -32093,25 +30686,25 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32134,7 +30727,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16507, @@ -32143,24 +30735,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x0", + "0x765cae9b95023644dde4", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32183,7 +30775,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16508, @@ -32192,24 +30783,24 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32232,7 +30823,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16509, @@ -32241,23 +30831,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32280,7 +30870,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16512, @@ -32289,24 +30878,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32329,7 +30918,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16513, @@ -32338,25 +30926,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32379,7 +30967,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16514, @@ -32388,26 +30975,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32430,7 +31017,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16515, @@ -32439,27 +31025,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", + "0x0", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32482,7 +31068,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16516, @@ -32491,27 +31076,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", + "0x0", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32534,7 +31119,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16517, @@ -32543,28 +31127,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", + "0x0", + "0x2", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32587,7 +31171,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16518, @@ -32596,27 +31179,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32639,7 +31222,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16521, @@ -32648,28 +31230,28 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000408b", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", + "0x0", + "0x1", + "0x408b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32692,7 +31274,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16523, @@ -32701,26 +31282,26 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32743,7 +31324,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16524, @@ -32752,26 +31332,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32794,7 +31374,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16526, @@ -32803,27 +31382,27 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32846,7 +31425,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16527, @@ -32855,26 +31433,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32897,7 +31475,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16529, @@ -32906,27 +31483,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -32949,7 +31526,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16530, @@ -32958,26 +31534,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0xe0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33000,7 +31576,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16531, @@ -33009,25 +31584,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000000000000000000100", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33050,7 +31625,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16532, @@ -33059,25 +31633,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33100,7 +31674,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16533, @@ -33109,26 +31682,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33151,7 +31724,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16534, @@ -33160,27 +31732,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33203,7 +31775,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16537, @@ -33212,28 +31783,28 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000003e3c", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x3e3c", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33256,7 +31827,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 15932, @@ -33265,27 +31835,27 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33308,7 +31878,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 15933, @@ -33317,27 +31886,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33360,7 +31929,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 15935, @@ -33369,28 +31937,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33413,7 +31981,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 15936, @@ -33422,29 +31989,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33467,7 +32034,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 15937, @@ -33476,30 +32042,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33522,7 +32088,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 15938, @@ -33531,29 +32096,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33576,7 +32141,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 15941, @@ -33585,30 +32149,30 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003e96", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x1", + "0x3e96", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33631,7 +32195,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16022, @@ -33640,28 +32203,28 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33684,7 +32247,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16023, @@ -33693,28 +32255,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33737,7 +32299,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16025, @@ -33746,29 +32307,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33791,39 +32352,38 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16026, - op: "GT", - gas: 128300, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", + op: "GT", + gas: 128300, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33846,7 +32406,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16027, @@ -33855,29 +32414,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33900,7 +32459,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16028, @@ -33909,30 +32467,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -33955,7 +32513,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16029, @@ -33964,30 +32521,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x1", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34010,7 +32567,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16032, @@ -34019,31 +32575,31 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003ea6", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x1", + "0x0", + "0x3ea6", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34066,7 +32622,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16033, @@ -34075,29 +32630,29 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34120,7 +32675,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16034, @@ -34129,28 +32683,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34173,7 +32727,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16036, @@ -34182,29 +32735,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34227,7 +32780,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16037, @@ -34236,30 +32788,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34282,7 +32834,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16038, @@ -34291,29 +32842,29 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34336,7 +32887,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16039, @@ -34345,29 +32895,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34390,7 +32940,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16042, @@ -34399,30 +32948,30 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000003efb", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x1", + "0x3efb", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34445,7 +32994,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16123, @@ -34454,28 +33002,28 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34498,7 +33046,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16124, @@ -34507,28 +33054,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34551,7 +33098,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16126, @@ -34560,29 +33106,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34605,7 +33151,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16129, @@ -34614,30 +33159,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34660,7 +33205,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16130, @@ -34669,31 +33213,31 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34716,7 +33260,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16133, @@ -34725,32 +33268,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34773,7 +33316,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16138, @@ -34782,33 +33324,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000ffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34831,7 +33373,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16141, @@ -34840,34 +33381,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000051f3", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xffffffff", + "0x51f3", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34890,7 +33431,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16142, @@ -34899,33 +33439,33 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000000051f3", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0x51f3", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -34948,7 +33488,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20979, @@ -34956,33 +33495,33 @@ export const trace: TurboGethTrace = { gas: 128223, gasCost: 1, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35005,7 +33544,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20980, @@ -35014,32 +33552,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35062,7 +33600,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20982, @@ -35071,33 +33608,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35120,7 +33657,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20983, @@ -35129,34 +33665,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e5", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0x0", + "0x3e5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35179,7 +33715,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20984, @@ -35188,34 +33723,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35238,7 +33773,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20985, @@ -35247,35 +33781,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0x0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35298,7 +33832,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20988, @@ -35307,36 +33840,36 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000520e", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0x0", + "0x0", + "0x0", + "0x520e", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35359,7 +33892,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20989, @@ -35368,34 +33900,34 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35418,7 +33950,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20990, @@ -35427,33 +33958,33 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35476,7 +34007,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20991, @@ -35485,32 +34015,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35533,7 +34063,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20992, @@ -35542,33 +34071,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000000003e5", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0x3e5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35591,7 +34120,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20993, @@ -35600,34 +34128,34 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0x3e5", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35650,7 +34178,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20994, @@ -35659,33 +34186,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35708,7 +34235,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20995, @@ -35717,34 +34243,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35767,7 +34293,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20996, @@ -35776,35 +34301,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x30927f74c9de0000", + "0x3e5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35827,7 +34352,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20997, @@ -35836,36 +34360,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35888,7 +34412,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20998, @@ -35897,37 +34420,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000000000000000003e5", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x3e5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -35950,7 +34473,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21001, @@ -35959,38 +34481,38 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "000000000000000000000000000000000000000000000000000000000000520b", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x3e5", + "0x520b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36013,7 +34535,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21003, @@ -36021,37 +34542,37 @@ export const trace: TurboGethTrace = { gas: 128157, gasCost: 1, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36074,7 +34595,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21004, @@ -36083,36 +34603,36 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36135,7 +34655,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21005, @@ -36144,35 +34663,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x30927f74c9de0000", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36195,7 +34714,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21006, @@ -36204,34 +34722,34 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36254,7 +34772,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21007, @@ -36263,34 +34780,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36313,7 +34830,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21010, @@ -36322,35 +34838,35 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001394", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", + "0x1", + "0x1394", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36373,7 +34889,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5012, @@ -36382,33 +34897,33 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36431,7 +34946,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5013, @@ -36440,33 +34954,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x3f0f", + "0x30927f74c9de0000", + "0x3e5", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36489,7 +35003,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5014, @@ -36498,33 +35011,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "00000000000000000000000000000000000000000000000000000000000003e5", - "0000000000000000000000000000000000000000000000000000000000003f0f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0xbd2a8a61d62d960000", + "0x30927f74c9de0000", + "0x3e5", + "0x3f0f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36547,7 +35060,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5015, @@ -36556,33 +35068,33 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000000000000000003e5", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0xbd2a8a61d62d960000", + "0x3f0f", + "0x3e5", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36605,7 +35117,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5016, @@ -36614,32 +35125,32 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f0f", - "00000000000000000000000000000000000000000000000000000000000003e5", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0xbd2a8a61d62d960000", + "0x3f0f", + "0x3e5", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36662,7 +35173,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5017, @@ -36671,31 +35181,31 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f0f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0xbd2a8a61d62d960000", + "0x3f0f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36718,7 +35228,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16143, @@ -36727,30 +35236,30 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36773,7 +35282,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16144, @@ -36782,30 +35290,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36828,7 +35336,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16145, @@ -36837,30 +35344,30 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36883,7 +35390,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16146, @@ -36892,29 +35398,29 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36937,7 +35443,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16148, @@ -36946,30 +35451,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -36992,7 +35497,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16151, @@ -37001,31 +35505,31 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37048,7 +35552,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16152, @@ -37057,32 +35560,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37105,7 +35608,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16153, @@ -37114,33 +35616,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37163,43 +35665,42 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16158, op: "PUSH2", gas: 128094, gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000000000000000ffffffff", + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0xffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37222,7 +35723,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16161, @@ -37231,35 +35731,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000051f3", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0xffffffff", + "0x51f3", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37282,7 +35782,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16162, @@ -37291,34 +35790,34 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000000000000000000051f3", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x51f3", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37341,7 +35840,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20979, @@ -37350,33 +35848,33 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37399,7 +35897,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20980, @@ -37408,33 +35905,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37457,7 +35954,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20982, @@ -37466,34 +35962,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37516,7 +36012,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20983, @@ -37525,35 +36020,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x0", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37576,7 +36071,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20984, @@ -37585,35 +36079,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37636,7 +36130,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20985, @@ -37645,36 +36138,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37697,7 +36190,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20988, @@ -37706,37 +36198,37 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000520e", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x0", + "0x0", + "0x0", + "0x520e", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37759,7 +36251,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20989, @@ -37768,35 +36259,35 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37819,7 +36310,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20990, @@ -37828,34 +36318,34 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37878,7 +36368,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20991, @@ -37887,33 +36376,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37936,7 +36425,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20992, @@ -37945,34 +36433,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -37995,7 +36483,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20993, @@ -38004,35 +36491,35 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x765cae9b95023644dde4", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38055,7 +36542,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20994, @@ -38064,34 +36550,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38114,7 +36600,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20995, @@ -38123,35 +36608,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38174,7 +36659,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20996, @@ -38183,36 +36667,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38235,46 +36719,45 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20997, op: "DUP2", gas: 128030, gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38297,7 +36780,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20998, @@ -38306,38 +36788,38 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38360,7 +36842,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21001, @@ -38369,39 +36850,39 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000520b", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x765cae9b95023644dde4", + "0x520b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38424,7 +36905,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21003, @@ -38433,37 +36913,37 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38486,7 +36966,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21004, @@ -38495,37 +36974,37 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38548,7 +37027,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21005, @@ -38557,36 +37035,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0xbd2a8a61d62d960000", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38609,7 +37087,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21006, @@ -38618,35 +37095,35 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38669,7 +37146,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21007, @@ -38678,35 +37154,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38729,7 +37205,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21010, @@ -38738,36 +37213,36 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001394", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x1", + "0x1394", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38790,7 +37265,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5012, @@ -38799,34 +37273,34 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38849,7 +37323,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5013, @@ -38858,34 +37331,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x3f23", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38908,7 +37381,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5014, @@ -38917,34 +37389,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000003f23", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0xbd2a8a61d62d960000", + "0x765cae9b95023644dde4", + "0x3f23", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -38967,7 +37439,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5015, @@ -38976,34 +37447,34 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x3f23", + "0x765cae9b95023644dde4", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39026,7 +37497,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5016, @@ -39035,33 +37505,33 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000003f23", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x3f23", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39084,7 +37554,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5017, @@ -39093,32 +37562,32 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000003f23", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x3f23", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39141,7 +37610,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16163, @@ -39150,31 +37618,31 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39197,7 +37665,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16164, @@ -39206,31 +37673,31 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x0", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39253,7 +37720,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16165, @@ -39262,31 +37728,31 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39309,7 +37775,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16166, @@ -39318,30 +37783,30 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39364,40 +37829,39 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, - }, - { - pc: 16168, - op: "PUSH2", - gas: 127963, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", + }, + { + pc: 16168, + op: "PUSH2", + gas: 127963, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39420,7 +37884,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16171, @@ -39429,32 +37892,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39477,7 +37940,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16172, @@ -39486,33 +37948,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39535,7 +37997,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16175, @@ -39544,34 +38005,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39594,7 +38055,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16176, @@ -39603,35 +38063,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39654,7 +38114,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16179, @@ -39663,36 +38122,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39715,7 +38174,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16184, @@ -39724,37 +38182,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000ffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0xffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39777,7 +38235,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16187, @@ -39786,38 +38243,38 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "00000000000000000000000000000000000000000000000000000000000051f3", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0xffffffff", + "0x51f3", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39840,7 +38297,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16188, @@ -39849,37 +38305,37 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000051f3", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x51f3", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39902,7 +38358,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20979, @@ -39911,36 +38366,36 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -39963,7 +38418,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20980, @@ -39972,36 +38426,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40024,7 +38478,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20982, @@ -40033,37 +38486,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40086,7 +38539,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20983, @@ -40095,38 +38547,38 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x0", + "0x3e8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40149,7 +38601,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20984, @@ -40158,38 +38609,38 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40212,7 +38663,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20985, @@ -40221,39 +38671,39 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40276,7 +38726,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20988, @@ -40285,40 +38734,40 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000520e", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x520e", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40341,7 +38790,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20989, @@ -40350,38 +38798,38 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40404,7 +38852,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20990, @@ -40413,37 +38860,37 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40466,45 +38913,44 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20991, op: "DUP1", - gas: 127901, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", + gas: 127901, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40527,7 +38973,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20992, @@ -40536,37 +38981,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x3e8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40589,7 +39034,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20993, @@ -40598,38 +39042,38 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x3e8", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40652,7 +39096,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20994, @@ -40661,37 +39104,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40714,7 +39157,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20995, @@ -40723,38 +39165,38 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40777,7 +39219,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20996, @@ -40786,39 +39227,39 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x224d7c738030159074", + "0x3e8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40841,7 +39282,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20997, @@ -40850,40 +39290,40 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40906,7 +39346,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 20998, @@ -40915,41 +39354,41 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "00000000000000000000000000000000000000000000000000000000000003e8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x3e8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -40972,7 +39411,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21001, @@ -40981,42 +39419,42 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "00000000000000000000000000000000000000000000000000000000000003e8", - "000000000000000000000000000000000000000000000000000000000000520b", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x3e8", + "0x520b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41039,7 +39477,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21003, @@ -41048,40 +39485,40 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41104,7 +39541,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21004, @@ -41113,40 +39549,40 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41169,7 +39605,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21005, @@ -41178,39 +39613,39 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x224d7c738030159074", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41233,7 +39668,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21006, @@ -41242,38 +39676,38 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41296,7 +39730,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21007, @@ -41305,38 +39738,38 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41359,7 +39792,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21010, @@ -41368,39 +39800,39 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001394", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", + "0x1", + "0x1394", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41423,7 +39855,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5012, @@ -41432,37 +39863,37 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41485,7 +39916,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5013, @@ -41494,37 +39924,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x3f3d", + "0x224d7c738030159074", + "0x3e8", + "0x85feae232cbbd43c4520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41547,7 +39977,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5014, @@ -41556,37 +39985,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000000000000000003f3d", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x85feae232cbbd43c4520", + "0x224d7c738030159074", + "0x3e8", + "0x3f3d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41609,46 +40038,45 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, - }, - { - pc: 5015, - op: "POP", - gas: 127835, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "00000000000000000000000000000000000000000000000000000000000003e8", - "0000000000000000000000000000000000000000000000224d7c738030159074", + }, + { + pc: 5015, + op: "POP", + gas: 127835, + gasCost: 2, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x85feae232cbbd43c4520", + "0x3f3d", + "0x3e8", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41671,7 +40099,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5016, @@ -41680,36 +40107,36 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000000000000000003f3d", - "00000000000000000000000000000000000000000000000000000000000003e8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x85feae232cbbd43c4520", + "0x3f3d", + "0x3e8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41732,7 +40159,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5017, @@ -41741,35 +40167,35 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000000000000000003f3d", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x85feae232cbbd43c4520", + "0x3f3d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41792,7 +40218,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16189, @@ -41801,34 +40226,34 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x85feae232cbbd43c4520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41851,7 +40276,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16190, @@ -41860,34 +40284,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x85feae232cbbd43c4520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41910,7 +40334,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16191, @@ -41919,34 +40342,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -41969,7 +40392,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16196, @@ -41978,35 +40400,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000000000000ffffffff", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0xffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42029,7 +40451,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16199, @@ -42038,36 +40459,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "00000000000000000000000000000000000000000000000000000000ffffffff", - "0000000000000000000000000000000000000000000000000000000000005279", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0xffffffff", + "0x5279", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42090,7 +40511,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16200, @@ -42099,35 +40519,35 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000005279", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0x5279", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42150,7 +40570,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21113, @@ -42159,34 +40578,34 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42209,7 +40628,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21114, @@ -42218,34 +40636,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42268,7 +40686,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21115, @@ -42277,35 +40694,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42328,7 +40745,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21116, @@ -42337,36 +40753,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0xbd2a8a61d62d960000", + "0x85feae232cbbd43c4520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42389,7 +40805,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21117, @@ -42398,35 +40813,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0x86bbd8ad8e9201d24520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42449,7 +40864,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21118, @@ -42458,36 +40872,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0x86bbd8ad8e9201d24520", + "0x85feae232cbbd43c4520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42510,7 +40924,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21119, @@ -42519,37 +40932,37 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0x86bbd8ad8e9201d24520", + "0x85feae232cbbd43c4520", + "0x86bbd8ad8e9201d24520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42572,7 +40985,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21120, @@ -42581,36 +40993,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0x86bbd8ad8e9201d24520", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42633,7 +41045,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21121, @@ -42642,36 +41053,36 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0x86bbd8ad8e9201d24520", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42694,7 +41105,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 21124, @@ -42703,37 +41113,37 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000001394", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0x86bbd8ad8e9201d24520", + "0x1", + "0x1394", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42756,7 +41166,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5012, @@ -42765,35 +41174,35 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0x86bbd8ad8e9201d24520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42816,44 +41225,43 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, - { - pc: 5013, - op: "SWAP3", - gas: 127766, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", + { + pc: 5013, + op: "SWAP3", + gas: 127766, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x3f49", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0x86bbd8ad8e9201d24520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42876,7 +41284,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5014, @@ -42885,35 +41292,35 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000000000000000000003f49", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x86bbd8ad8e9201d24520", + "0x85feae232cbbd43c4520", + "0xbd2a8a61d62d960000", + "0x3f49", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42936,7 +41343,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5015, @@ -42945,35 +41351,35 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000000000000000000000085feae232cbbd43c4520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x86bbd8ad8e9201d24520", + "0x3f49", + "0xbd2a8a61d62d960000", + "0x85feae232cbbd43c4520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -42996,7 +41402,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5016, @@ -43005,34 +41410,34 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000003f49", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x86bbd8ad8e9201d24520", + "0x3f49", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43055,7 +41460,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 5017, @@ -43064,33 +41468,33 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000003f49", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x86bbd8ad8e9201d24520", + "0x3f49", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43113,7 +41517,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16201, @@ -43122,32 +41525,32 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x86bbd8ad8e9201d24520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43170,7 +41573,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16202, @@ -43179,32 +41581,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x0", + "0x86bbd8ad8e9201d24520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43227,7 +41629,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16203, @@ -43236,32 +41637,32 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43284,7 +41685,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16204, @@ -43293,31 +41693,31 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43340,7 +41740,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16205, @@ -43349,32 +41748,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", + "0x86bbd8ad8e9201d24520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43397,7 +41796,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16206, @@ -43406,33 +41804,33 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", + "0x86bbd8ad8e9201d24520", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43455,7 +41853,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16207, @@ -43464,34 +41861,34 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", + "0x86bbd8ad8e9201d24520", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43514,7 +41911,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16210, @@ -43523,35 +41919,35 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000000000000000003f54", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", + "0x86bbd8ad8e9201d24520", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", + "0x3f54", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43574,7 +41970,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16212, @@ -43583,33 +41978,33 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", + "0x86bbd8ad8e9201d24520", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43632,7 +42027,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16213, @@ -43641,33 +42035,33 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", + "0x86bbd8ad8e9201d24520", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43690,7 +42084,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16214, @@ -43699,32 +42092,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "000000000000000000000000000000000000000000000000000000000000409a", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x409a", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", + "0xa62e25b2c24304451f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43747,7 +42140,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16215, @@ -43756,32 +42148,32 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "000000000000000000000000000000000000000000000000000000000000409a", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x30927f74c9de0000", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", + "0x409a", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43804,7 +42196,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16216, @@ -43813,32 +42204,32 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x409a", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43861,7 +42252,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16217, @@ -43870,31 +42260,31 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", - "0000000000000000000000000000000000000000000086bbd8ad8e9201d24520", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x409a", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", + "0x86bbd8ad8e9201d24520", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43917,7 +42307,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16218, @@ -43926,30 +42315,30 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", - "0000000000000000000000000057761818b4cda94f746d9f2d62c7f317980000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x409a", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", + "0x57761818b4cda94f746d9f2d62c7f317980000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -43972,7 +42361,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16219, @@ -43981,29 +42369,29 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000bd2a8a61d62d960000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x409a", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", + "0xbd2a8a61d62d960000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44026,37 +42414,36 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, - }, - { - pc: 16220, - op: "POP", - gas: 127700, - gasCost: 2, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000000000000000000000", + }, + { + pc: 16220, + op: "POP", + gas: 127700, + gasCost: 2, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x409a", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44079,7 +42466,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16221, @@ -44088,27 +42474,27 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x409a", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44131,7 +42517,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16222, @@ -44140,26 +42525,26 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x409a", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44182,7 +42567,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16223, @@ -44191,25 +42575,25 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "000000000000000000000000000000000000000000000000000000000000409a", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x409a", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44232,7 +42616,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16538, @@ -44241,24 +42624,24 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44281,7 +42664,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16539, @@ -44290,24 +42672,24 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44330,7 +42712,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16540, @@ -44339,25 +42720,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44380,7 +42761,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16541, @@ -44389,26 +42769,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44431,7 +42811,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16543, @@ -44440,27 +42819,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44483,7 +42862,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16544, @@ -44492,26 +42870,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44534,7 +42912,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16545, @@ -44543,27 +42920,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x1", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44586,7 +42963,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16546, @@ -44595,27 +42971,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x1", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44638,7 +43014,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16547, @@ -44647,28 +43022,28 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x1", + "0x2", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44691,7 +43066,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16548, @@ -44700,27 +43074,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44743,7 +43117,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16551, @@ -44752,28 +43125,28 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000040a9", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x1", + "0x1", + "0x40a9", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44796,7 +43169,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16553, @@ -44805,26 +43177,26 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44847,7 +43219,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16554, @@ -44856,26 +43227,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44898,7 +43269,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16556, @@ -44907,27 +43277,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x1", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -44950,7 +43320,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16557, @@ -44959,27 +43328,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x20", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45002,7 +43371,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16558, @@ -45011,28 +43379,28 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x20", + "0x1", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45055,7 +43423,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16559, @@ -45064,27 +43431,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0xe0", + "0x20", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45107,7 +43474,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16560, @@ -45116,27 +43482,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x20", + "0x20", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45159,7 +43525,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16561, @@ -45168,27 +43533,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x20", + "0xe0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45211,7 +43576,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16562, @@ -45220,27 +43584,27 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x20", + "0xe0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45263,7 +43627,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16563, @@ -45272,26 +43635,26 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x20", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45314,7 +43677,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16564, @@ -45323,25 +43685,25 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", - "0000000000000000000000000000000000000000000000000000000000000120", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", + "0xa62e25b2c24304451f", + "0x120", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45364,7 +43726,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16565, @@ -45373,23 +43734,23 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", - "00000000000000000000000000000000000000000000765cae9b95023644dde4", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", + "0x765cae9b95023644dde4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45412,7 +43773,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16566, @@ -45421,22 +43781,22 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000224d7c738030159074", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x224d7c738030159074", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45459,30 +43819,29 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16567, op: "PUSH1", - gas: 127611, - gasCost: 3, - depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + gas: 127611, + gasCost: 3, + depth: 1, + stack: [ + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45505,7 +43864,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16569, @@ -45514,22 +43872,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45552,7 +43910,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16570, @@ -45561,21 +43918,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45598,7 +43955,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16573, @@ -45607,22 +43963,22 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000004035", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", + "0x4035", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45645,7 +44001,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16437, @@ -45654,21 +44009,21 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45691,7 +44046,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16438, @@ -45700,21 +44054,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45737,7 +44091,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16440, @@ -45746,22 +44099,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45784,7 +44137,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16441, @@ -45793,23 +44145,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", + "0x1", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45832,7 +44184,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16442, @@ -45841,23 +44192,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", + "0x1", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45880,7 +44231,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16443, @@ -45889,22 +44239,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45927,7 +44277,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16444, @@ -45936,23 +44285,23 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -45975,7 +44324,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16445, @@ -45984,22 +44332,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46022,7 +44370,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16446, @@ -46031,22 +44378,22 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46069,7 +44416,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16449, @@ -46078,23 +44424,23 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000040be", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", + "0x1", + "0x40be", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46117,7 +44463,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16574, @@ -46126,21 +44471,21 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46163,7 +44508,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16575, @@ -46172,21 +44516,21 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46209,7 +44553,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16576, @@ -46218,20 +44561,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000022b8", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0x22b8", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46254,7 +44597,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16577, @@ -46263,20 +44605,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000022b8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xe0", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x30927f74c9de0000", + "0x80", + "0x22b8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46299,7 +44641,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16578, @@ -46308,20 +44649,20 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000022b8", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xe0", + "0x22b8", + "0x30927f74c9de0000", + "0x80", + "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46344,7 +44685,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16579, @@ -46353,19 +44693,19 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000022b8", - "00000000000000000000000000000000000000000000000030927f74c9de0000", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xe0", + "0x22b8", + "0x30927f74c9de0000", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46388,7 +44728,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16580, @@ -46397,18 +44736,18 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000022b8", - "00000000000000000000000000000000000000000000000030927f74c9de0000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xe0", + "0x22b8", + "0x30927f74c9de0000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46431,7 +44770,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 16581, @@ -46440,17 +44778,17 @@ export const trace: TurboGethTrace = { gasCost: 8, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000022b8", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xe0", + "0x22b8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46473,7 +44811,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8888, @@ -46482,16 +44819,16 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46514,7 +44851,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8889, @@ -46523,16 +44859,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0x60", + "0x603d3635", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46555,7 +44891,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8890, @@ -46564,16 +44899,16 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000060", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x60", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46596,7 +44931,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8891, @@ -46605,15 +44939,15 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46636,7 +44970,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8892, @@ -46645,16 +44978,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46677,7 +45010,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8893, @@ -46686,17 +45018,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46719,7 +45051,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8895, @@ -46728,18 +45059,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46762,7 +45093,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8896, @@ -46771,19 +45101,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x1", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46806,7 +45136,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8897, @@ -46815,19 +45144,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x1", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46850,7 +45179,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8898, @@ -46859,18 +45187,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46893,7 +45221,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8899, @@ -46902,19 +45229,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x1", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46937,7 +45264,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8900, @@ -46946,19 +45272,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x1", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -46981,7 +45307,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8901, @@ -46990,20 +45315,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x1", + "0x2", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47026,7 +45351,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8902, @@ -47035,19 +45359,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47070,7 +45394,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8905, @@ -47079,20 +45402,20 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000022cb", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x1", + "0x1", + "0x22cb", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47115,7 +45438,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8907, @@ -47124,18 +45446,18 @@ export const trace: TurboGethTrace = { gasCost: 1, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47158,7 +45480,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8908, @@ -47167,18 +45488,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47201,7 +45522,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8910, @@ -47210,19 +45530,19 @@ export const trace: TurboGethTrace = { gasCost: 5, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x1", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47245,7 +45565,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8911, @@ -47254,18 +45573,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47288,7 +45607,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8913, @@ -47297,19 +45615,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x20", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47332,7 +45650,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8914, @@ -47341,18 +45658,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xe0", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47375,7 +45692,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8915, @@ -47384,17 +45700,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "0000000000000000000000000000000000000000000000000000000000000120", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0x120", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47417,7 +45733,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8916, @@ -47426,17 +45741,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "0000000000000000000000000000000000000000000000a62e25b2c24304451f", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0xaaf4dac5b59af21dfd", + "0xa62e25b2c24304451f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47459,7 +45774,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8917, @@ -47468,16 +45782,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47500,7 +45814,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8918, @@ -47509,16 +45822,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47541,7 +45854,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8921, @@ -47550,17 +45862,17 @@ export const trace: TurboGethTrace = { gasCost: 10, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000232a", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x0", + "0x232a", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47583,7 +45895,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8922, @@ -47592,15 +45903,15 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47623,7 +45934,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8924, @@ -47632,16 +45942,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47664,7 +45974,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8925, @@ -47673,16 +45982,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47705,7 +46014,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8958, @@ -47714,17 +46022,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", - "08c379a000000000000000000000000000000000000000000000000000000000", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x1fd", + "0x8c379a000000000000000000000000000000000000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47747,7 +46055,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8959, @@ -47756,18 +46063,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", - "08c379a000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x1fd", + "0x8c379a000000000000000000000000000000000000000000000000000000000", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47790,7 +46097,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8960, @@ -47799,16 +46105,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47831,7 +46137,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8962, @@ -47840,17 +46145,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x1fd", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47873,7 +46178,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8963, @@ -47882,16 +46186,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47914,7 +46218,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8964, @@ -47923,17 +46226,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47956,7 +46259,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8965, @@ -47965,18 +46267,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x201", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -47999,7 +46301,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8967, @@ -48008,19 +46309,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x201", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48043,7 +46344,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8968, @@ -48052,18 +46352,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x221", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48086,7 +46386,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8969, @@ -48095,19 +46394,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x221", + "0x201", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48130,7 +46429,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8970, @@ -48139,20 +46437,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x221", + "0x201", + "0x221", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48175,7 +46473,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8971, @@ -48184,19 +46481,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x221", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48219,7 +46516,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8972, @@ -48228,20 +46524,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000201", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x221", + "0x20", + "0x201", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48264,7 +46560,6 @@ export const trace: TurboGethTrace = { "0000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8973, @@ -48273,18 +46568,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x221", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48307,7 +46602,6 @@ export const trace: TurboGethTrace = { "2000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8975, @@ -48316,19 +46610,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000000000000000000000000000000000000000002b", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x221", + "0x2b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48351,7 +46645,6 @@ export const trace: TurboGethTrace = { "2000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8976, @@ -48360,20 +46653,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "000000000000000000000000000000000000000000000000000000000000002b", - "0000000000000000000000000000000000000000000000000000000000000221", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x221", + "0x2b", + "0x221", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48396,7 +46689,6 @@ export const trace: TurboGethTrace = { "2000000000000000000000000000000000000000224d7c738030159074000000", "00000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8977, @@ -48405,18 +46697,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x221", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48439,7 +46731,6 @@ export const trace: TurboGethTrace = { "2000000000000000000000000000000000000000000000000000000000000000", "2b000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8979, @@ -48448,19 +46739,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000221", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x221", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48483,7 +46774,6 @@ export const trace: TurboGethTrace = { "2000000000000000000000000000000000000000000000000000000000000000", "2b000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8980, @@ -48492,18 +46782,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x241", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48526,7 +46816,6 @@ export const trace: TurboGethTrace = { "2000000000000000000000000000000000000000000000000000000000000000", "2b000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8981, @@ -48535,19 +46824,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", - "0000000000000000000000000000000000000000000000000000000000000241", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x241", + "0x241", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48570,7 +46859,6 @@ export const trace: TurboGethTrace = { "2000000000000000000000000000000000000000000000000000000000000000", "2b000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8984, @@ -48579,20 +46867,20 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", - "0000000000000000000000000000000000000000000000000000000000000241", - "0000000000000000000000000000000000000000000000000000000000005508", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x241", + "0x241", + "0x5508", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48615,7 +46903,6 @@ export const trace: TurboGethTrace = { "2000000000000000000000000000000000000000000000000000000000000000", "2b000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8986, @@ -48624,21 +46911,21 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", - "0000000000000000000000000000000000000000000000000000000000000241", - "0000000000000000000000000000000000000000000000000000000000005508", - "000000000000000000000000000000000000000000000000000000000000002b", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x241", + "0x241", + "0x5508", + "0x2b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48661,7 +46948,6 @@ export const trace: TurboGethTrace = { "2000000000000000000000000000000000000000000000000000000000000000", "2b000000000000000000000000000000000000000000000000603d35de000000", ], - storage: {}, }, { pc: 8987, @@ -48670,21 +46956,21 @@ export const trace: TurboGethTrace = { gasCost: 12, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", - "000000000000000000000000000000000000000000000000000000000000002b", - "0000000000000000000000000000000000000000000000000000000000005508", - "0000000000000000000000000000000000000000000000000000000000000241", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x241", + "0x2b", + "0x5508", + "0x241", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48706,9 +46992,7 @@ export const trace: TurboGethTrace = { "a000000000000000000000000000000000000000000000000000000000000000", "2000000000000000000000000000000000000000000000000000000000000000", "2b000000000000000000000000000000000000000000000000603d35de000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8988, @@ -48717,18 +47001,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x241", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48752,7 +47036,6 @@ export const trace: TurboGethTrace = { "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", "55545055545f414d4f554e540000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8990, @@ -48761,19 +47044,19 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000241", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x241", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48797,7 +47080,6 @@ export const trace: TurboGethTrace = { "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", "55545055545f414d4f554e540000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8991, @@ -48806,18 +47088,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000281", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x201", + "0x201", + "0x281", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48841,7 +47123,6 @@ export const trace: TurboGethTrace = { "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", "55545055545f414d4f554e540000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8992, @@ -48850,18 +47131,18 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000201", - "0000000000000000000000000000000000000000000000000000000000000201", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x281", + "0x201", + "0x201", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48885,7 +47166,6 @@ export const trace: TurboGethTrace = { "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", "55545055545f414d4f554e540000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8993, @@ -48894,17 +47174,17 @@ export const trace: TurboGethTrace = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000201", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x281", + "0x201", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48928,7 +47208,6 @@ export const trace: TurboGethTrace = { "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", "55545055545f414d4f554e540000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8994, @@ -48937,16 +47216,16 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000281", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x281", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -48970,7 +47249,6 @@ export const trace: TurboGethTrace = { "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", "55545055545f414d4f554e540000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8996, @@ -48979,17 +47257,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000281", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x281", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -49013,7 +47291,6 @@ export const trace: TurboGethTrace = { "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", "55545055545f414d4f554e540000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8997, @@ -49022,17 +47299,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000281", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x281", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -49056,7 +47333,6 @@ export const trace: TurboGethTrace = { "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", "55545055545f414d4f554e540000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8998, @@ -49065,18 +47341,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000281", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x281", + "0x1fd", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -49100,7 +47376,6 @@ export const trace: TurboGethTrace = { "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", "55545055545f414d4f554e540000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 8999, @@ -49109,18 +47384,18 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000281", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x1fd", + "0x1fd", + "0x281", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -49144,7 +47419,6 @@ export const trace: TurboGethTrace = { "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", "55545055545f414d4f554e540000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 9000, @@ -49153,17 +47427,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000001fd", - "0000000000000000000000000000000000000000000000000000000000000084", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x1fd", + "0x84", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -49187,7 +47461,6 @@ export const trace: TurboGethTrace = { "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", "55545055545f414d4f554e540000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 9001, @@ -49196,17 +47469,17 @@ export const trace: TurboGethTrace = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000007ff36ab5", - "0000000000000000000000000000000000000000000000000000000000000340", - "0000000000000000000000000000000000000000000000aaf4dac5b59af21dfd", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000002fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", - "00000000000000000000000000000000000000000000000000000000603d3635", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000603d3635", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000001fd", + "0x7ff36ab5", + "0x340", + "0xaaf4dac5b59af21dfd", + "0xa4", + "0x2", + "0x2fa9c2f0e50800fb9a826b0a3cd0383df1ed9ff8", + "0x603d3635", + "0xe0", + "0x603d3635", + "0x84", + "0x1fd", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -49229,9 +47502,7 @@ export const trace: TurboGethTrace = { "2000000000000000000000000000000000000000000000000000000000000000", "2b556e69737761705632526f757465723a20494e53554646494349454e545f4f", "55545055545f414d4f554e540000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, ], }; diff --git a/hardhat-tests/test/fixture-debug-traces/modifiesStateTrace.ts b/hardhat-tests/test/fixture-debug-traces/modifiesStateTrace.ts index 531af2250e..5c666db90d 100644 --- a/hardhat-tests/test/fixture-debug-traces/modifiesStateTrace.ts +++ b/hardhat-tests/test/fixture-debug-traces/modifiesStateTrace.ts @@ -1,9 +1,77 @@ import { RpcDebugTraceOutput } from "hardhat/internal/hardhat-network/provider/output"; +// Trace generated using Geth 1.16.7 +// +// Start the Geth dev node with debug API enabled: +// ```bash +// docker run -it --rm -p 8545:8545 -p 8546:8546 ethereum/client-go:stable --dev --http --http.addr 0.0.0.0 --http.api eth,net,debug --ws --ws.addr 0.0.0.0 --ws.api eth,net,debug +// ``` +// +// Add the following code to `scripts/simulate-geth.mts`: +// ```ts +// import * as viem from "viem"; +// +// const url = "http://localhost:8546"; // For WSL: "http://10.0.0.43:8545"; +// const data = `0x60806040526000805560018060006101000a81548160ff021916908360ff1602179055507f123456789012345678901234567890123456789012345678901234567890123460001b60025534801561005657600080fd5b50610155806100666000396000f3fe6080604052600436106100345760003560e01c80631b334ecc14610039578063b582ec5f14610067578063e5aa3d5814610098575b600080fd5b6100656004803603602081101561004f57600080fd5b81019080803590602001909291905050506100c3565b005b34801561007357600080fd5b5061007c610107565b604051808260ff1660ff16815260200191505060405180910390f35b3480156100a457600080fd5b506100ad61011a565b6040518082815260200191505060405180910390f35b6000547f3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d826040518082815260200191505060405180910390a28060008190555050565b600160009054906101000a900460ff1681565b6000548156fea265627a7a72305820951d38e524dcd5a927d384cf274e65b6e0ac9bae6a41e5e1a7f1275697b8f0b764736f6c634300050a0032`; +// +// const publicClient = viem +// .createPublicClient({ +// transport: viem.http(url), +// }) +// .extend((client) => ({ +// async traceTransaction(args: viem.Hash) { +// return client.request({ +// method: "debug_traceTransaction", +// params: [ +// args, +// { +// enableMemory: true, +// } as any, +// ], +// }); +// }, +// })); +// const walletClient = viem.createWalletClient({ +// transport: viem.http(url), +// }); +// +// const [gethAccount] = await walletClient.getAddresses(); +// +// const gethClient = viem.createWalletClient({ +// transport: viem.http(url), +// account: gethAccount, +// }); +// +// const deploymentTx = await gethClient.sendTransaction({ +// data, +// chain: null, +// }); +// +// const receipt = await publicClient.waitForTransactionReceipt({ +// hash: deploymentTx, +// }); +// +// const contractAddress = receipt.contractAddress; +// const txHash = await gethClient.sendTransaction({ +// to: contractAddress, +// data: "0x1b334ecc000000000000000000000000000000000000000000000000000000000000000a", // modifiesState() selector +// gas: 6_000_000n, +// chain: null, +// }); +// +// const trace = await publicClient.traceTransaction(txHash); +// console.log("Trace result:", JSON.stringify(trace, null, 2)); +// ``` +// +// Run the script with: +// ```bash +// npx tsx scripts/simulate-geth.mts &> debug.txt +// ``` + export const trace: RpcDebugTraceOutput = { gas: 44945, failed: false, - returnValue: "", + returnValue: "0x", structLogs: [ { pc: 0, @@ -12,8 +80,6 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [], - memory: [], - storage: {}, }, { pc: 2, @@ -21,11 +87,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5978793, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, + stack: ["0x80"], }, { pc: 4, @@ -33,16 +95,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5978790, gasCost: 12, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, + stack: ["0x80", "0x40"], }, { pc: 5, @@ -56,7 +109,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 7, @@ -64,15 +116,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978775, gasCost: 2, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8, @@ -80,16 +129,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978773, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x4", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 9, @@ -97,15 +142,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978770, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 12, @@ -113,16 +155,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978767, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000034", - ], + stack: ["0x0", "0x34"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 13, @@ -136,7 +174,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 15, @@ -144,15 +181,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978754, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 16, @@ -161,14 +195,13 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "1b334ecc00000000000000000000000000000000000000000000000000000000", + "0x1b334ecc00000000000000000000000000000000000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 18, @@ -177,15 +210,14 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "1b334ecc00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x1b334ecc00000000000000000000000000000000000000000000000000000000", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 19, @@ -193,15 +225,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978745, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], + stack: ["0x1b334ecc"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 20, @@ -209,16 +238,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978742, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], + stack: ["0x1b334ecc", "0x1b334ecc"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 25, @@ -226,17 +251,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978739, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "000000000000000000000000000000000000000000000000000000001b334ecc", - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], + stack: ["0x1b334ecc", "0x1b334ecc", "0x1b334ecc"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 26, @@ -244,16 +264,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978736, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x1b334ecc", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 29, @@ -261,17 +277,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978733, gasCost: 10, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000039", - ], + stack: ["0x1b334ecc", "0x1", "0x39"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 57, @@ -279,15 +290,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978723, gasCost: 1, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], + stack: ["0x1b334ecc"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 58, @@ -295,15 +303,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978722, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], + stack: ["0x1b334ecc"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 61, @@ -311,16 +316,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978719, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - ], + stack: ["0x1b334ecc", "0x65"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 63, @@ -328,17 +329,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978716, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x1b334ecc", "0x65", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 64, @@ -346,18 +342,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978713, gasCost: 2, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x1b334ecc", "0x65", "0x4", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 65, @@ -365,19 +355,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978711, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x1b334ecc", "0x65", "0x4", "0x4", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 66, @@ -385,18 +368,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978708, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x1b334ecc", "0x65", "0x4", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 68, @@ -404,19 +381,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978705, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x1b334ecc", "0x65", "0x4", "0x20", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 69, @@ -424,20 +394,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978702, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x1b334ecc", "0x65", "0x4", "0x20", "0x20", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 70, @@ -445,19 +407,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978699, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x1b334ecc", "0x65", "0x4", "0x20", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 71, @@ -465,19 +420,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978696, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x1b334ecc", "0x65", "0x4", "0x20", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 74, @@ -485,20 +433,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978693, gasCost: 10, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000004f", - ], + stack: ["0x1b334ecc", "0x65", "0x4", "0x20", "0x1", "0x4f"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 79, @@ -506,18 +446,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978683, gasCost: 1, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x1b334ecc", "0x65", "0x4", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 80, @@ -525,18 +459,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978682, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x1b334ecc", "0x65", "0x4", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 81, @@ -544,19 +472,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978679, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x1b334ecc", "0x65", "0x4", "0x20", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 82, @@ -564,18 +485,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978676, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x1b334ecc", "0x65", "0x4", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 83, @@ -583,18 +498,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978673, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x1b334ecc", "0x65", "0x24", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 84, @@ -602,19 +511,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978670, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x1b334ecc", "0x65", "0x24", "0x4", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 85, @@ -622,20 +524,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978667, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x1b334ecc", "0x65", "0x24", "0x4", "0x4", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 86, @@ -643,20 +537,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978664, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000000a", - ], + stack: ["0x1b334ecc", "0x65", "0x24", "0x4", "0x4", "0xa"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 87, @@ -664,20 +550,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978661, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x1b334ecc", "0x65", "0x24", "0x4", "0xa", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 89, @@ -685,21 +563,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978658, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x1b334ecc", "0x65", "0x24", "0x4", "0xa", "0x4", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 90, @@ -707,20 +576,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978655, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x1b334ecc", "0x65", "0x24", "0x4", "0xa", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 91, @@ -728,20 +589,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978652, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - "000000000000000000000000000000000000000000000000000000000000000a", - ], + stack: ["0x1b334ecc", "0x65", "0x24", "0x4", "0x24", "0xa"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 92, @@ -749,20 +602,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978649, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0x4", "0x24", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 93, @@ -770,20 +615,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978646, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0x24", "0x24", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 94, @@ -791,20 +628,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978643, gasCost: 2, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0x24", "0x4", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 95, @@ -812,19 +641,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978641, gasCost: 2, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0x24", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 96, @@ -832,18 +654,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978639, gasCost: 2, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 97, @@ -851,17 +667,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978637, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - ], + stack: ["0x1b334ecc", "0x65", "0xa"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 100, @@ -869,18 +680,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978634, gasCost: 8, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "00000000000000000000000000000000000000000000000000000000000000c3", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0xc3"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 195, @@ -888,17 +693,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978626, gasCost: 1, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - ], + stack: ["0x1b334ecc", "0x65", "0xa"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 196, @@ -906,17 +706,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5978625, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - ], + stack: ["0x1b334ecc", "0x65", "0xa"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 198, @@ -924,12 +719,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5978622, gasCost: 2100, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -946,21 +736,12 @@ export const trace: RpcDebugTraceOutput = { gas: 5976522, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 232, @@ -969,21 +750,17 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 233, @@ -992,22 +769,18 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 235, @@ -1016,23 +789,19 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 236, @@ -1041,23 +810,19 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 237, @@ -1066,24 +831,20 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa", + "0x80", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 238, @@ -1092,25 +853,21 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000000a", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa", + "0x80", + "0x80", + "0xa", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 239, @@ -1119,28 +876,22 @@ export const trace: RpcDebugTraceOutput = { gasCost: 9, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa", + "0x80", + "0x80", + "0xa", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 240, @@ -1149,14 +900,14 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa", + "0x80", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -1165,10 +916,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 242, @@ -1177,15 +924,15 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa", + "0x80", + "0x80", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -1194,10 +941,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 243, @@ -1206,14 +949,14 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa", + "0x80", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -1222,10 +965,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 244, @@ -1234,14 +973,14 @@ export const trace: RpcDebugTraceOutput = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000000a", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa0", + "0x80", + "0xa", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -1250,10 +989,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 245, @@ -1262,13 +997,13 @@ export const trace: RpcDebugTraceOutput = { gasCost: 2, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa0", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -1277,10 +1012,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 246, @@ -1289,12 +1020,12 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -1303,10 +1034,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 248, @@ -1315,13 +1042,13 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa0", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -1330,10 +1057,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 249, @@ -1342,13 +1065,13 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa0", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -1357,10 +1080,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 250, @@ -1369,14 +1088,14 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0xa0", + "0x80", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -1385,10 +1104,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 251, @@ -1397,14 +1112,14 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0x80", + "0x80", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -1413,10 +1128,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 252, @@ -1425,13 +1136,13 @@ export const trace: RpcDebugTraceOutput = { gasCost: 3, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0x80", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -1440,10 +1151,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 253, @@ -1452,13 +1159,13 @@ export const trace: RpcDebugTraceOutput = { gasCost: 1381, depth: 1, stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x1b334ecc", + "0x65", + "0xa", + "0x0", + "0x3359f789ea83a10b6e9605d460de1088ff290dd7b3c9a155c896d45cf495ed4d", + "0x20", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -1467,10 +1174,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 254, @@ -1478,11 +1181,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5975080, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - ], + stack: ["0x1b334ecc", "0x65", "0xa"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1490,10 +1189,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 255, @@ -1501,12 +1196,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5975077, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0xa"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1514,10 +1204,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 257, @@ -1525,13 +1211,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5975074, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0xa", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1539,10 +1219,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 258, @@ -1550,14 +1226,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5975071, gasCost: 3, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000000a", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0xa", "0x0", "0xa"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1565,10 +1234,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "0000000000000000000000000000000000000000000000000000000000000000", - }, }, { pc: 259, @@ -1576,14 +1241,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5975068, gasCost: 20000, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0xa", "0xa", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1602,12 +1260,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5955068, gasCost: 2, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - "000000000000000000000000000000000000000000000000000000000000000a", - ], + stack: ["0x1b334ecc", "0x65", "0xa", "0xa"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1615,10 +1268,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "000000000000000000000000000000000000000000000000000000000000000a", - }, }, { pc: 261, @@ -1626,11 +1275,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5955066, gasCost: 2, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - "000000000000000000000000000000000000000000000000000000000000000a", - ], + stack: ["0x1b334ecc", "0x65", "0xa"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1638,10 +1283,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "000000000000000000000000000000000000000000000000000000000000000a", - }, }, { pc: 262, @@ -1649,10 +1290,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5955064, gasCost: 8, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - "0000000000000000000000000000000000000000000000000000000000000065", - ], + stack: ["0x1b334ecc", "0x65"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1660,10 +1298,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "000000000000000000000000000000000000000000000000000000000000000a", - }, }, { pc: 101, @@ -1671,9 +1305,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5955056, gasCost: 1, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], + stack: ["0x1b334ecc"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1681,10 +1313,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "000000000000000000000000000000000000000000000000000000000000000a", - }, }, { pc: 102, @@ -1692,9 +1320,7 @@ export const trace: RpcDebugTraceOutput = { gas: 5955055, gasCost: 0, depth: 1, - stack: [ - "000000000000000000000000000000000000000000000000000000001b334ecc", - ], + stack: ["0x1b334ecc"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -1702,10 +1328,6 @@ export const trace: RpcDebugTraceOutput = { "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000a", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "000000000000000000000000000000000000000000000000000000000000000a", - }, }, ], }; diff --git a/hardhat-tests/test/fixture-debug-traces/traceCall/contractAGetMessage.ts b/hardhat-tests/test/fixture-debug-traces/traceCall/contractAGetMessage.ts index 8c30becf67..de5a7bf3d4 100644 --- a/hardhat-tests/test/fixture-debug-traces/traceCall/contractAGetMessage.ts +++ b/hardhat-tests/test/fixture-debug-traces/traceCall/contractAGetMessage.ts @@ -1,12 +1,77 @@ import { GethTrace } from "../types"; -// Trace generated using Geth 1.12.2 +// Trace generated using Geth 1.16.7 +// +// Start the Geth dev node with debug API enabled: +// ```bash +// docker run -it --rm -p 8545:8545 -p 8546:8546 ethereum/client-go:stable --dev --http --http.addr 0.0.0.0 --http.api eth,net,debug --ws --ws.addr 0.0.0.0 --ws.api eth,net,debug +// ``` +// +// Add the following code to `scripts/simulate-geth.mts`: +// ```ts +// import * as viem from "viem"; +// +// const url = "http://localhost:8546"; // For WSL: "http://10.0.0.43:8545"; +// const data = `0x60806040526040518060400160405280601481526020017f48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000815250600090816200004a9190620002d9565b503480156200005857600080fd5b50620003c0565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620000e157607f821691505b602082108103620000f757620000f662000099565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000122565b6200016d868362000122565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620001ba620001b4620001ae8462000185565b6200018f565b62000185565b9050919050565b6000819050919050565b620001d68362000199565b620001ee620001e582620001c1565b8484546200012f565b825550505050565b600090565b62000205620001f6565b62000212818484620001cb565b505050565b5b818110156200023a576200022e600082620001fb565b60018101905062000218565b5050565b601f82111562000289576200025381620000fd565b6200025e8462000112565b810160208510156200026e578190505b620002866200027d8562000112565b83018262000217565b50505b505050565b600082821c905092915050565b6000620002ae600019846008026200028e565b1980831691505092915050565b6000620002c983836200029b565b9150826002028217905092915050565b620002e4826200005f565b67ffffffffffffffff8111156200030057620002ff6200006a565b5b6200030c8254620000c8565b620003198282856200023e565b600060209050601f8311600181146200035157600084156200033c578287015190505b620003488582620002bb565b865550620003b8565b601f1984166200036186620000fd565b60005b828110156200038b5784890151825560018201915060208501945060208101905062000364565b86831015620003ab5784890151620003a7601f8916826200029b565b8355505b6001600288020188555050505b505050505050565b61044780620003d06000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c8063922af8a714610046578063ce6d41de14610062578063e21f37ce14610080575b600080fd5b610060600480360381019061005b9190610240565b61009e565b005b61006a6100e5565b60405161007791906102fd565b60405180910390f35b610088610177565b60405161009591906102fd565b60405180910390f35b60058110156100e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100d990610391565b60405180910390fd5b50565b6060600080546100f4906103e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610120906103e0565b801561016d5780601f106101425761010080835404028352916020019161016d565b820191906000526020600020905b81548152906001019060200180831161015057829003601f168201915b5050505050905090565b60008054610184906103e0565b80601f01602080910402602001604051908101604052809291908181526020018280546101b0906103e0565b80156101fd5780601f106101d2576101008083540402835291602001916101fd565b820191906000526020600020905b8154815290600101906020018083116101e057829003601f168201915b505050505081565b600080fd5b6000819050919050565b61021d8161020a565b811461022857600080fd5b50565b60008135905061023a81610214565b92915050565b60006020828403121561025657610255610205565b5b60006102648482850161022b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156102a757808201518184015260208101905061028c565b60008484015250505050565b6000601f19601f8301169050919050565b60006102cf8261026d565b6102d98185610278565b93506102e9818560208601610289565b6102f2816102b3565b840191505092915050565b6000602082019050818103600083015261031781846102c4565b905092915050565b7f4e756d626572206d7573742062652067726561746572207468616e206f72206560008201527f7175616c20746f20350000000000000000000000000000000000000000000000602082015250565b600061037b602983610278565b91506103868261031f565b604082019050919050565b600060208201905081810360008301526103aa8161036e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806103f857607f821691505b60208210810361040b5761040a6103b1565b5b5091905056fea264697066735822122020ca109dafe8d18c33567a0178897e773d2e68d523f0a39ee5b9080615a8774964736f6c63430008120033`; +// +// const publicClient = viem +// .createPublicClient({ +// transport: viem.http(url), +// }) +// .extend((client) => ({ +// async traceCall(args: viem.CallParameters) { +// return client.request({ +// method: "debug_traceCall", +// params: [ +// viem.formatTransactionRequest(args) as any, +// "latest", +// { +// enableMemory: true, +// } as any, +// ], +// }); +// }, +// })); +// const walletClient = viem.createWalletClient({ +// transport: viem.http(url), +// }); +// +// const [gethAccount] = await walletClient.getAddresses(); +// +// const gethClient = viem.createWalletClient({ +// transport: viem.http(url), +// account: gethAccount, +// }); +// +// const deploymentTx = await gethClient.sendTransaction({ +// data, +// chain: null, +// }); +// +// const receipt = await publicClient.waitForTransactionReceipt({ +// hash: deploymentTx, +// }); +// +// const contractAddress = receipt.contractAddress; +// +// const trace = await publicClient.traceCall({ +// to: contractAddress, +// data: "0xce6d41de", // getMessage() selector +// }); +// +// console.log("Trace result:", JSON.stringify(trace, null, 2)); +// ``` +// +// Run the script with: +// ```bash +// npx tsx scripts/simulate-geth.mts &> debug.txt +// ``` export const trace: GethTrace = { gas: 24495, failed: false, returnValue: - "0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001448656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001448656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", structLogs: [ { pc: 0, @@ -15,8 +80,6 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [], - memory: [], - storage: {}, }, { pc: 2, @@ -24,11 +87,7 @@ export const trace: GethTrace = { gas: 49978933, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, + stack: ["0x80"], }, { pc: 4, @@ -36,16 +95,7 @@ export const trace: GethTrace = { gas: 49978930, gasCost: 12, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, + stack: ["0x80", "0x40"], }, { pc: 5, @@ -59,7 +109,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 6, @@ -67,15 +116,12 @@ export const trace: GethTrace = { gas: 49978916, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 7, @@ -83,16 +129,12 @@ export const trace: GethTrace = { gas: 49978913, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8, @@ -100,16 +142,12 @@ export const trace: GethTrace = { gas: 49978910, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x0", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 11, @@ -117,17 +155,12 @@ export const trace: GethTrace = { gas: 49978907, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010", - ], + stack: ["0x0", "0x1", "0x10"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 16, @@ -135,15 +168,12 @@ export const trace: GethTrace = { gas: 49978897, gasCost: 1, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 17, @@ -151,15 +181,12 @@ export const trace: GethTrace = { gas: 49978896, gasCost: 2, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 18, @@ -173,7 +200,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 20, @@ -181,15 +207,12 @@ export const trace: GethTrace = { gas: 49978891, gasCost: 2, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 21, @@ -197,16 +220,12 @@ export const trace: GethTrace = { gas: 49978889, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x4", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 22, @@ -214,15 +233,12 @@ export const trace: GethTrace = { gas: 49978886, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 25, @@ -230,16 +246,12 @@ export const trace: GethTrace = { gas: 49978883, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000041", - ], + stack: ["0x0", "0x41"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 26, @@ -253,7 +265,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 28, @@ -261,15 +272,12 @@ export const trace: GethTrace = { gas: 49978870, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 29, @@ -278,14 +286,13 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "ce6d41de00000000000000000000000000000000000000000000000000000000", + "0xce6d41de00000000000000000000000000000000000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 31, @@ -294,15 +301,14 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "ce6d41de00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0xce6d41de00000000000000000000000000000000000000000000000000000000", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 32, @@ -310,15 +316,12 @@ export const trace: GethTrace = { gas: 49978861, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], + stack: ["0xce6d41de"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 33, @@ -326,16 +329,12 @@ export const trace: GethTrace = { gas: 49978858, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], + stack: ["0xce6d41de", "0xce6d41de"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 38, @@ -343,17 +342,12 @@ export const trace: GethTrace = { gas: 49978855, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000922af8a7", - ], + stack: ["0xce6d41de", "0xce6d41de", "0x922af8a7"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 39, @@ -361,16 +355,12 @@ export const trace: GethTrace = { gas: 49978852, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0xce6d41de", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 42, @@ -378,17 +368,12 @@ export const trace: GethTrace = { gas: 49978849, gasCost: 10, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000046", - ], + stack: ["0xce6d41de", "0x0", "0x46"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 43, @@ -396,15 +381,12 @@ export const trace: GethTrace = { gas: 49978839, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], + stack: ["0xce6d41de"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 44, @@ -412,16 +394,12 @@ export const trace: GethTrace = { gas: 49978836, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], + stack: ["0xce6d41de", "0xce6d41de"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 49, @@ -429,17 +407,12 @@ export const trace: GethTrace = { gas: 49978833, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], + stack: ["0xce6d41de", "0xce6d41de", "0xce6d41de"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 50, @@ -447,16 +420,12 @@ export const trace: GethTrace = { gas: 49978830, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0xce6d41de", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 53, @@ -464,17 +433,12 @@ export const trace: GethTrace = { gas: 49978827, gasCost: 10, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000062", - ], + stack: ["0xce6d41de", "0x1", "0x62"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 98, @@ -482,15 +446,12 @@ export const trace: GethTrace = { gas: 49978817, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], + stack: ["0xce6d41de"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 99, @@ -498,15 +459,12 @@ export const trace: GethTrace = { gas: 49978816, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - ], + stack: ["0xce6d41de"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 102, @@ -514,16 +472,12 @@ export const trace: GethTrace = { gas: 49978813, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - ], + stack: ["0xce6d41de", "0x6a"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 105, @@ -531,17 +485,12 @@ export const trace: GethTrace = { gas: 49978810, gasCost: 8, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "00000000000000000000000000000000000000000000000000000000000000e5", - ], + stack: ["0xce6d41de", "0x6a", "0xe5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 229, @@ -549,16 +498,12 @@ export const trace: GethTrace = { gas: 49978802, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - ], + stack: ["0xce6d41de", "0x6a"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 230, @@ -566,16 +511,12 @@ export const trace: GethTrace = { gas: 49978801, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - ], + stack: ["0xce6d41de", "0x6a"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 232, @@ -583,17 +524,12 @@ export const trace: GethTrace = { gas: 49978798, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - ], + stack: ["0xce6d41de", "0x6a", "0x60"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 234, @@ -601,18 +537,12 @@ export const trace: GethTrace = { gas: 49978795, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 235, @@ -620,13 +550,7 @@ export const trace: GethTrace = { gas: 49978792, gasCost: 2100, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -644,21 +568,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 239, @@ -667,22 +587,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "00000000000000000000000000000000000000000000000000000000000000f4", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xf4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 240, @@ -691,22 +607,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 243, @@ -715,23 +627,19 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "00000000000000000000000000000000000000000000000000000000000003e0", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x3e0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 992, @@ -740,22 +648,18 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 993, @@ -764,22 +668,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 995, @@ -788,23 +688,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 997, @@ -813,24 +709,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x0", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 998, @@ -839,25 +731,21 @@ export const trace: GethTrace = { gasCost: 5, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x0", + "0x2", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 999, @@ -866,24 +754,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x0", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1000, @@ -892,24 +776,20 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1001, @@ -918,23 +798,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1003, @@ -943,24 +819,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000001", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1004, @@ -969,25 +841,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000001", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x1", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1005, @@ -996,24 +864,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1006, @@ -1022,25 +886,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1009, @@ -1049,26 +909,22 @@ export const trace: GethTrace = { gasCost: 10, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003f8", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", + "0x0", + "0x3f8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1010, @@ -1077,24 +933,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1012, @@ -1103,25 +955,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007f", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", + "0x7f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1013, @@ -1130,26 +978,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007f", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", + "0x7f", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1014, @@ -1158,25 +1002,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1015, @@ -1185,25 +1025,21 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1016, @@ -1212,24 +1048,20 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1017, @@ -1238,24 +1070,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1019, @@ -1264,25 +1092,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1020, @@ -1291,26 +1115,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0x20", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1021, @@ -1319,25 +1139,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1022, @@ -1346,26 +1162,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0x1", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1023, @@ -1374,25 +1186,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1026, @@ -1401,26 +1209,22 @@ export const trace: GethTrace = { gasCost: 10, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000040b", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x40b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1035, @@ -1429,24 +1233,20 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1036, @@ -1455,24 +1255,20 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1037, @@ -1481,23 +1277,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1038, @@ -1506,23 +1298,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "00000000000000000000000000000000000000000000000000000000000000f4", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0x14", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xf4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1039, @@ -1531,23 +1319,19 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000f4", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0x14", + "0xf4", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1040, @@ -1555,23 +1339,12 @@ export const trace: GethTrace = { gas: 49976576, gasCost: 8, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000f4", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0xf4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 244, @@ -1579,22 +1352,12 @@ export const trace: GethTrace = { gas: 49976568, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 245, @@ -1602,22 +1365,12 @@ export const trace: GethTrace = { gas: 49976567, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 246, @@ -1625,23 +1378,12 @@ export const trace: GethTrace = { gas: 49976564, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x14"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 248, @@ -1649,24 +1391,12 @@ export const trace: GethTrace = { gas: 49976561, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - "000000000000000000000000000000000000000000000000000000000000001f", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x14", "0x1f"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 249, @@ -1674,23 +1404,12 @@ export const trace: GethTrace = { gas: 49976558, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000033", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x33"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 251, @@ -1698,24 +1417,12 @@ export const trace: GethTrace = { gas: 49976555, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000033", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x33", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 252, @@ -1724,24 +1431,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000033", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0x14", + "0x33", + "0x20", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 253, @@ -1750,24 +1453,20 @@ export const trace: GethTrace = { gasCost: 5, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000033", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0x14", + "0x20", + "0x20", + "0x33", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 254, @@ -1775,24 +1474,12 @@ export const trace: GethTrace = { gas: 49976544, gasCost: 5, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x20", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 255, @@ -1800,23 +1487,12 @@ export const trace: GethTrace = { gas: 49976539, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 257, @@ -1824,24 +1500,12 @@ export const trace: GethTrace = { gas: 49976536, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x20", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 258, @@ -1849,23 +1513,12 @@ export const trace: GethTrace = { gas: 49976533, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000040", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x40"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 260, @@ -1873,24 +1526,12 @@ export const trace: GethTrace = { gas: 49976530, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x40", "0x40"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 261, @@ -1898,24 +1539,12 @@ export const trace: GethTrace = { gas: 49976527, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x40", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 262, @@ -1923,24 +1552,12 @@ export const trace: GethTrace = { gas: 49976524, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x80", "0x40"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 263, @@ -1949,24 +1566,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0x14", + "0x80", + "0x40", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 264, @@ -1974,24 +1587,12 @@ export const trace: GethTrace = { gas: 49976518, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x80", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 266, @@ -2000,24 +1601,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040", + "0xce6d41de", + "0x6a", + "0x60", + "0x0", + "0x14", + "0x80", + "0xc0", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 267, @@ -2025,23 +1622,12 @@ export const trace: GethTrace = { gas: 49976512, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 268, @@ -2049,24 +1635,12 @@ export const trace: GethTrace = { gas: 49976509, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x0", "0x14", "0x80", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 269, @@ -2074,24 +1648,12 @@ export const trace: GethTrace = { gas: 49976506, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x80", "0x14", "0x80", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 270, @@ -2099,24 +1661,12 @@ export const trace: GethTrace = { gas: 49976503, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000014", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x80", "0x0", "0x80", "0x14"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 271, @@ -2124,24 +1674,12 @@ export const trace: GethTrace = { gas: 49976500, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x80", "0x0", "0x14", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 272, @@ -2150,24 +1688,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0x80", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 273, @@ -2176,27 +1710,21 @@ export const trace: GethTrace = { gasCost: 9, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0x80", + "0x14", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 274, @@ -2204,26 +1732,14 @@ export const trace: GethTrace = { gas: 49976485, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x80", "0x0", "0x14", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, + ], }, { pc: 276, @@ -2232,14 +1748,14 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0x80", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2248,10 +1764,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 277, @@ -2259,15 +1771,7 @@ export const trace: GethTrace = { gas: 49976479, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x80", "0x0", "0x14", "0xa0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2275,10 +1779,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 278, @@ -2287,14 +1787,14 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2303,10 +1803,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 279, @@ -2315,15 +1811,15 @@ export const trace: GethTrace = { gasCost: 100, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2344,15 +1840,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2361,10 +1857,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 283, @@ -2373,16 +1865,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000120", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x120", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2391,10 +1883,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 284, @@ -2403,16 +1891,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2421,10 +1909,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 287, @@ -2433,17 +1917,17 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "00000000000000000000000000000000000000000000000000000000000003e0", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x3e0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2452,10 +1936,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 992, @@ -2464,16 +1944,16 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2482,10 +1962,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 993, @@ -2494,16 +1970,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2512,10 +1988,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 995, @@ -2524,17 +1996,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2543,10 +2015,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 997, @@ -2555,18 +2023,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x0", + "0x2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2575,10 +2043,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 998, @@ -2587,19 +2051,19 @@ export const trace: GethTrace = { gasCost: 5, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x0", + "0x2", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2608,10 +2072,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 999, @@ -2620,18 +2080,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000000", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x0", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2640,10 +2100,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1000, @@ -2652,18 +2108,18 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2672,10 +2128,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1001, @@ -2684,17 +2136,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2703,10 +2155,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1003, @@ -2715,18 +2163,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000001", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2735,10 +2183,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1004, @@ -2747,19 +2191,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000001", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x1", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2768,10 +2212,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1005, @@ -2780,18 +2220,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2800,10 +2240,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1006, @@ -2812,19 +2248,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2833,10 +2269,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1009, @@ -2845,20 +2277,20 @@ export const trace: GethTrace = { gasCost: 10, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003f8", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", + "0x0", + "0x3f8", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2867,10 +2299,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1010, @@ -2879,18 +2307,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2899,10 +2327,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1012, @@ -2911,19 +2335,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007f", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", + "0x7f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2932,10 +2356,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1013, @@ -2944,20 +2364,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007f", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", + "0x7f", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2966,10 +2386,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1014, @@ -2978,19 +2394,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2999,10 +2415,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1015, @@ -3011,19 +2423,19 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0x2432b6363790333937b69031b7b73a3930b1ba10800000000000000000000014", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3032,10 +2444,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1016, @@ -3044,18 +2452,18 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3064,10 +2472,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1017, @@ -3076,18 +2480,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3096,31 +2500,27 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1019, op: "DUP3", - gas: 49976293, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + gas: 49976293, + gasCost: 3, + depth: 1, + stack: [ + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3129,10 +2529,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1020, @@ -3141,20 +2537,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0x20", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3163,10 +2559,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1021, @@ -3175,19 +2567,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3196,10 +2588,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1022, @@ -3208,20 +2596,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0x1", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3230,10 +2618,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1023, @@ -3242,19 +2626,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3263,10 +2647,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1026, @@ -3275,20 +2655,20 @@ export const trace: GethTrace = { gasCost: 10, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000000000000000000000000000000000000000040b", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x40b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3297,10 +2677,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1035, @@ -3309,18 +2685,18 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3329,10 +2705,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1036, @@ -3341,18 +2713,18 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3361,10 +2733,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1037, @@ -3373,17 +2741,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3392,10 +2760,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1038, @@ -3404,17 +2768,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - "0000000000000000000000000000000000000000000000000000000000000120", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0x120", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3423,10 +2787,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1039, @@ -3435,17 +2795,17 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000120", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x120", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3454,10 +2814,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 1040, @@ -3466,16 +2822,16 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000120", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x120", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3484,10 +2840,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 288, @@ -3496,15 +2848,15 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3513,10 +2865,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 289, @@ -3525,15 +2873,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3542,10 +2890,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 290, @@ -3554,16 +2898,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3572,10 +2916,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 291, @@ -3584,16 +2924,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3602,10 +2942,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 294, @@ -3614,17 +2950,17 @@ export const trace: GethTrace = { gasCost: 10, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000016d", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x0", + "0x16d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3633,10 +2969,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 295, @@ -3645,15 +2977,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3662,10 +2994,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 296, @@ -3674,16 +3002,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3692,10 +3020,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 298, @@ -3704,17 +3028,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - "000000000000000000000000000000000000000000000000000000000000001f", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x14", + "0x1f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3723,10 +3047,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 299, @@ -3735,16 +3055,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3753,10 +3073,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 302, @@ -3765,17 +3081,17 @@ export const trace: GethTrace = { gasCost: 10, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000142", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x0", + "0x142", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3784,10 +3100,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 303, @@ -3796,15 +3108,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3813,10 +3125,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 306, @@ -3825,16 +3133,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3843,10 +3151,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 307, @@ -3855,17 +3159,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x100", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3874,10 +3178,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 308, @@ -3886,18 +3186,18 @@ export const trace: GethTrace = { gasCost: 100, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x100", + "0x100", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3918,18 +3218,18 @@ export const trace: GethTrace = { gasCost: 5, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000100", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x100", + "0x100", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3938,10 +3238,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 310, @@ -3950,17 +3246,17 @@ export const trace: GethTrace = { gasCost: 5, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0048656c6c6f2066726f6d20636f6e7472616374210000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x100", + "0x48656c6c6f2066726f6d20636f6e7472616374210000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3969,10 +3265,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 311, @@ -3981,16 +3273,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3999,10 +3291,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 312, @@ -4011,17 +3299,17 @@ export const trace: GethTrace = { gasCost: 6, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4029,12 +3317,7 @@ export const trace: GethTrace = { "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 313, @@ -4043,15 +3326,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xa0", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4061,10 +3344,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 314, @@ -4073,15 +3352,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0x14", + "0x0", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4091,10 +3370,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 316, @@ -4103,16 +3378,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0x14", + "0x0", + "0xa0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4122,10 +3397,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 317, @@ -4134,15 +3405,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0x14", + "0x0", + "0xc0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4152,10 +3423,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 318, @@ -4164,15 +3431,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xc0", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4182,10 +3449,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 321, @@ -4194,16 +3457,16 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "000000000000000000000000000000000000000000000000000000000000016d", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xc0", + "0x0", + "0x14", + "0x16d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4213,10 +3476,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 365, @@ -4225,15 +3484,15 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xc0", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4243,10 +3502,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 366, @@ -4255,15 +3510,15 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xc0", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4273,10 +3528,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 367, @@ -4285,14 +3536,14 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x6a", + "0x60", + "0x80", + "0x0", + "0x14", + "0xc0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4302,10 +3553,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 368, @@ -4313,15 +3560,7 @@ export const trace: GethTrace = { gas: 49976051, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x80", "0x0", "0x14", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4330,10 +3569,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 369, @@ -4341,14 +3576,7 @@ export const trace: GethTrace = { gas: 49976049, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x80", "0x0", "0x14"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4357,10 +3585,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 370, @@ -4368,13 +3592,7 @@ export const trace: GethTrace = { gas: 49976047, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x80", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4383,10 +3601,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 371, @@ -4394,12 +3608,7 @@ export const trace: GethTrace = { gas: 49976045, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0xce6d41de", "0x6a", "0x60", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4408,10 +3617,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 372, @@ -4419,12 +3624,7 @@ export const trace: GethTrace = { gas: 49976042, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000060", - ], + stack: ["0xce6d41de", "0x6a", "0x80", "0x60"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4433,10 +3633,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 373, @@ -4444,11 +3640,7 @@ export const trace: GethTrace = { gas: 49976040, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "000000000000000000000000000000000000000000000000000000000000006a", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0xce6d41de", "0x6a", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4457,10 +3649,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 374, @@ -4468,11 +3656,7 @@ export const trace: GethTrace = { gas: 49976037, gasCost: 8, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000006a", - ], + stack: ["0xce6d41de", "0x80", "0x6a"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4481,10 +3665,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 106, @@ -4492,10 +3672,7 @@ export const trace: GethTrace = { gas: 49976029, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0xce6d41de", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4504,10 +3681,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 107, @@ -4515,10 +3688,7 @@ export const trace: GethTrace = { gas: 49976028, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0xce6d41de", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4527,10 +3697,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 109, @@ -4538,11 +3704,7 @@ export const trace: GethTrace = { gas: 49976025, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], + stack: ["0xce6d41de", "0x80", "0x40"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4551,10 +3713,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 110, @@ -4562,11 +3720,7 @@ export const trace: GethTrace = { gas: 49976022, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x80", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4575,10 +3729,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 113, @@ -4586,12 +3736,7 @@ export const trace: GethTrace = { gas: 49976019, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000077", - ], + stack: ["0xce6d41de", "0x80", "0xc0", "0x77"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4600,10 +3745,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 114, @@ -4611,12 +3752,7 @@ export const trace: GethTrace = { gas: 49976016, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0xce6d41de", "0x77", "0xc0", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4625,10 +3761,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 115, @@ -4636,12 +3768,7 @@ export const trace: GethTrace = { gas: 49976013, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4650,10 +3777,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 118, @@ -4661,13 +3784,7 @@ export const trace: GethTrace = { gas: 49976010, gasCost: 8, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000002fd", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0x2fd"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4676,10 +3793,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 765, @@ -4687,12 +3800,7 @@ export const trace: GethTrace = { gas: 49976002, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4701,10 +3809,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 766, @@ -4712,12 +3816,7 @@ export const trace: GethTrace = { gas: 49976001, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4726,24 +3825,14 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 768, op: "PUSH1", gas: 49975998, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + gasCost: 3, + depth: 1, + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4752,10 +3841,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 770, @@ -4763,14 +3848,7 @@ export const trace: GethTrace = { gas: 49975995, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0x0", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4779,10 +3857,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 771, @@ -4790,15 +3864,7 @@ export const trace: GethTrace = { gas: 49975992, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0x0", "0x20", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4807,10 +3873,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 772, @@ -4818,14 +3880,7 @@ export const trace: GethTrace = { gas: 49975989, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0x0", "0xe0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4834,10 +3889,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 773, @@ -4845,14 +3896,7 @@ export const trace: GethTrace = { gas: 49975986, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4861,10 +3905,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 774, @@ -4872,13 +3912,7 @@ export const trace: GethTrace = { gas: 49975984, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4887,10 +3921,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 775, @@ -4898,14 +3928,7 @@ export const trace: GethTrace = { gas: 49975981, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4914,10 +3937,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 776, @@ -4925,15 +3944,7 @@ export const trace: GethTrace = { gas: 49975978, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0", "0xc0", "0xe0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4942,10 +3953,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 777, @@ -4953,14 +3960,7 @@ export const trace: GethTrace = { gas: 49975975, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4969,10 +3969,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 779, @@ -4980,15 +3976,7 @@ export const trace: GethTrace = { gas: 49975972, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0", "0x20", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4997,10 +3985,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 780, @@ -5009,14 +3993,14 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x20", + "0x0", + "0xc0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5026,10 +4010,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 781, @@ -5037,15 +4017,7 @@ export const trace: GethTrace = { gas: 49975966, gasCost: 6, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0", "0x20", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5053,12 +4025,7 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 782, @@ -5066,13 +4033,7 @@ export const trace: GethTrace = { gas: 49975960, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5082,10 +4043,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 785, @@ -5093,14 +4050,7 @@ export const trace: GethTrace = { gas: 49975957, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0", "0x317"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5110,10 +4060,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 786, @@ -5121,15 +4067,7 @@ export const trace: GethTrace = { gas: 49975954, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0", "0x317", "0xe0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5139,10 +4077,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 787, @@ -5151,14 +4085,14 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5169,10 +4103,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 790, @@ -5181,15 +4111,15 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000002c4", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x2c4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5200,10 +4130,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 708, @@ -5212,14 +4138,14 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5230,10 +4156,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 709, @@ -5242,14 +4164,14 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5260,10 +4182,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 711, @@ -5272,15 +4190,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5291,10 +4209,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 714, @@ -5303,16 +4217,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x2cf", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5323,10 +4237,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 715, @@ -5335,17 +4245,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x2cf", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5356,10 +4266,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 718, @@ -5368,18 +4274,18 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000026d", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x2cf", + "0x80", + "0x26d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5390,10 +4296,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 621, @@ -5402,17 +4304,17 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x2cf", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5423,10 +4325,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 622, @@ -5435,17 +4333,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x2cf", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5456,10 +4354,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 624, @@ -5468,18 +4362,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x2cf", + "0x80", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5490,10 +4384,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 625, @@ -5502,19 +4392,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x2cf", + "0x80", + "0x0", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5525,10 +4415,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 626, @@ -5537,19 +4423,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x2cf", + "0x80", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5560,31 +4446,27 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 627, op: "POP", gas: 49975906, - gasCost: 2, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + gasCost: 2, + depth: 1, + stack: [ + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x2cf", + "0x80", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5595,10 +4477,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 628, @@ -5607,18 +4485,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x2cf", + "0x80", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5629,10 +4507,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 629, @@ -5641,18 +4515,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000002cf", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x80", + "0x2cf", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5663,10 +4537,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 630, @@ -5675,18 +4545,18 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002cf", - "0000000000000000000000000000000000000000000000000000000000000080", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2cf", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5697,10 +4567,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 631, @@ -5709,17 +4575,17 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002cf", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2cf", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5730,10 +4596,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 719, @@ -5742,16 +4604,16 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5762,10 +4624,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 720, @@ -5774,16 +4632,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5794,10 +4652,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 723, @@ -5806,17 +4660,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5827,10 +4681,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 724, @@ -5839,18 +4689,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5861,10 +4711,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 725, @@ -5873,19 +4719,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5896,10 +4742,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 728, @@ -5908,20 +4750,20 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000278", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", + "0x278", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5932,10 +4774,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 632, @@ -5944,19 +4782,19 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -5967,10 +4805,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 633, @@ -5979,19 +4813,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6002,10 +4836,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 635, @@ -6014,20 +4844,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6038,10 +4868,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 636, @@ -6050,21 +4876,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6075,10 +4901,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 637, @@ -6087,22 +4909,22 @@ export const trace: GethTrace = { gasCost: 6, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", + "0x0", + "0x14", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6112,12 +4934,7 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 638, @@ -6126,20 +4943,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6151,10 +4968,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 640, @@ -6163,21 +4976,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6189,10 +5002,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 641, @@ -6201,22 +5010,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", + "0x0", + "0x20", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6228,10 +5037,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 642, @@ -6240,21 +5045,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", + "0x0", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6266,10 +5071,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 643, @@ -6278,21 +5079,21 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", + "0x100", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6304,10 +5105,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 644, @@ -6316,20 +5113,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002d9", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x2d9", + "0x14", + "0xe0", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6341,10 +5138,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 645, @@ -6353,20 +5146,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000002d9", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x100", + "0x14", + "0xe0", + "0x2d9", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6378,10 +5171,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 646, @@ -6390,20 +5179,20 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000002d9", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x100", + "0x2d9", + "0xe0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6415,10 +5204,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 647, @@ -6427,19 +5212,19 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000002d9", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x100", + "0x2d9", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6450,11 +5235,7 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", - ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, + ], }, { pc: 648, @@ -6463,18 +5244,18 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000002d9", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x100", + "0x2d9", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6486,10 +5267,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 729, @@ -6498,17 +5275,17 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6520,10 +5297,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 730, @@ -6532,17 +5305,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0xe0", + "0x80", + "0x0", + "0x14", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6554,10 +5327,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 731, @@ -6566,17 +5335,17 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6588,10 +5357,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 732, @@ -6600,16 +5365,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6621,10 +5386,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 735, @@ -6633,17 +5394,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6655,10 +5416,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 736, @@ -6667,18 +5424,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6690,10 +5447,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 737, @@ -6702,19 +5455,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6726,10 +5479,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 739, @@ -6738,20 +5487,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6763,10 +5512,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 740, @@ -6775,21 +5520,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0x20", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6801,10 +5546,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 741, @@ -6813,20 +5554,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6838,10 +5579,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 744, @@ -6850,21 +5587,21 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000289", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x289", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6876,10 +5613,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 649, @@ -6888,20 +5621,20 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6913,10 +5646,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 650, @@ -6925,20 +5654,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6950,10 +5679,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 652, @@ -6962,21 +5687,21 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -6988,10 +5713,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 653, @@ -7000,21 +5721,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7026,10 +5747,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 654, @@ -7038,22 +5755,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7065,10 +5782,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 655, @@ -7077,23 +5790,23 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7105,10 +5818,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 656, @@ -7117,22 +5826,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7144,10 +5853,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 657, @@ -7156,22 +5861,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7183,10 +5888,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 660, @@ -7195,23 +5896,23 @@ export const trace: GethTrace = { gasCost: 10, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002a7", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x0", + "0x2a7", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7223,10 +5924,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 661, @@ -7235,21 +5932,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7261,10 +5958,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 662, @@ -7273,22 +5966,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7300,35 +5993,31 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 663, - op: "ADD", - gas: 49975748, - gasCost: 3, - depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", + op: "ADD", + gas: 49975748, + gasCost: 3, + depth: 1, + stack: [ + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x0", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7340,10 +6029,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 664, @@ -7352,22 +6037,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7379,10 +6064,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 665, @@ -7391,22 +6072,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7418,10 +6099,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 666, @@ -7430,23 +6107,23 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7458,10 +6135,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 667, @@ -7470,24 +6143,24 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", + "0x0", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7499,10 +6172,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 668, @@ -7511,23 +6180,23 @@ export const trace: GethTrace = { gasCost: 6, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7538,12 +6207,7 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 669, @@ -7552,21 +6216,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7579,10 +6243,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 671, @@ -7591,22 +6251,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7619,10 +6279,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 672, @@ -7631,23 +6287,23 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x20", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7660,10 +6316,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 673, @@ -7672,22 +6324,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7700,10 +6352,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 674, @@ -7712,22 +6360,22 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7740,10 +6388,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 675, @@ -7752,21 +6396,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7779,10 +6423,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 678, @@ -7791,22 +6431,22 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000028c", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", + "0x28c", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7819,10 +6459,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 652, @@ -7831,21 +6467,21 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7858,10 +6494,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 653, @@ -7870,21 +6502,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7897,10 +6529,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 654, @@ -7909,22 +6537,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7937,10 +6565,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 655, @@ -7949,23 +6573,23 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", + "0x14", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -7978,10 +6602,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 656, @@ -7990,22 +6610,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8018,10 +6638,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 657, @@ -8030,22 +6646,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8058,10 +6674,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 660, @@ -8070,23 +6682,23 @@ export const trace: GethTrace = { gasCost: 10, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000002a7", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", + "0x1", + "0x2a7", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8099,10 +6711,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 679, @@ -8111,21 +6719,21 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8138,10 +6746,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 680, @@ -8150,21 +6754,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8177,10 +6781,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 682, @@ -8189,22 +6789,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8217,10 +6817,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 683, @@ -8229,23 +6825,23 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8258,10 +6854,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 684, @@ -8270,24 +6862,24 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", + "0x0", + "0x14", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8300,10 +6892,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 685, @@ -8312,23 +6900,23 @@ export const trace: GethTrace = { gasCost: 6, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000114", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", + "0x0", + "0x114", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8340,12 +6928,7 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000014", "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 686, @@ -8354,21 +6937,21 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8382,10 +6965,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 687, @@ -8394,20 +6973,20 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000a0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", + "0xa0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8421,10 +7000,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 688, @@ -8433,19 +7008,19 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8459,10 +7034,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 689, @@ -8471,18 +7042,18 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8496,10 +7067,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 690, @@ -8508,17 +7075,17 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002e9", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2e9", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8532,10 +7099,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 745, @@ -8544,16 +7107,16 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8567,10 +7130,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 746, @@ -8579,16 +7138,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8602,10 +7161,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 749, @@ -8614,17 +7169,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8638,10 +7193,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 750, @@ -8650,18 +7201,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8675,10 +7226,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 753, @@ -8687,19 +7234,19 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002b3", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", + "0x2b3", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8713,10 +7260,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 691, @@ -8725,18 +7268,18 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8750,10 +7293,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 692, @@ -8762,18 +7301,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8787,10 +7326,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 694, @@ -8799,19 +7334,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8825,10 +7360,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 696, @@ -8837,20 +7368,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000001f", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", + "0x0", + "0x1f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8864,10 +7395,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 697, @@ -8876,20 +7403,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8903,10 +7430,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 699, @@ -8915,21 +7438,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8943,10 +7466,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 700, @@ -8955,22 +7474,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -8984,10 +7503,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 701, @@ -8996,21 +7511,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000033", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x33", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9024,10 +7539,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 702, @@ -9036,20 +7547,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9063,10 +7574,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 703, @@ -9074,21 +7581,21 @@ export const trace: GethTrace = { gas: 49975598, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", + stack: [ + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", + "0x20", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9102,10 +7609,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 704, @@ -9114,19 +7617,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x2f2", + "0x14", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9140,10 +7643,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 705, @@ -9152,19 +7651,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000014", - "00000000000000000000000000000000000000000000000000000000000002f2", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x20", + "0x14", + "0x2f2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9178,10 +7677,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 706, @@ -9190,19 +7685,19 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002f2", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x20", + "0x2f2", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9216,10 +7711,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 707, @@ -9228,18 +7719,18 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000002f2", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x20", + "0x2f2", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9253,10 +7744,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 754, @@ -9265,17 +7752,17 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9289,10 +7776,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 755, @@ -9301,17 +7784,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9325,10 +7808,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 756, @@ -9337,18 +7816,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x20", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9362,10 +7841,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 757, @@ -9374,17 +7849,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000120", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x0", + "0x14", + "0x120", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9398,10 +7873,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 758, @@ -9410,17 +7881,17 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000014", - "0000000000000000000000000000000000000000000000000000000000000000", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x120", + "0x14", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9434,10 +7905,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 759, @@ -9446,16 +7913,16 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000014", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x120", + "0x14", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9469,10 +7936,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 760, @@ -9481,15 +7944,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000120", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x317", + "0x100", + "0x80", + "0x120", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9503,10 +7966,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 761, @@ -9515,15 +7974,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000317", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x120", + "0x100", + "0x80", + "0x317", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9537,10 +7996,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 762, @@ -9549,15 +8004,15 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000100", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x120", + "0x317", + "0x80", + "0x100", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9571,10 +8026,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 763, @@ -9583,14 +8034,14 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000317", - "0000000000000000000000000000000000000000000000000000000000000080", + "0xce6d41de", + "0x77", + "0x80", + "0xc0", + "0xe0", + "0x120", + "0x317", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -9604,10 +8055,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 764, @@ -9615,15 +8062,7 @@ export const trace: GethTrace = { gas: 49975556, gasCost: 8, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000317", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0", "0x120", "0x317"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9636,10 +8075,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 791, @@ -9647,14 +8082,7 @@ export const trace: GethTrace = { gas: 49975548, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000120", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0", "0x120"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9667,10 +8095,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 792, @@ -9678,14 +8102,7 @@ export const trace: GethTrace = { gas: 49975547, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000120", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0xe0", "0x120"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9698,10 +8115,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 793, @@ -9709,14 +8122,7 @@ export const trace: GethTrace = { gas: 49975544, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000000000000000000000000000000000000000000000000000000000e0", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0x120", "0xe0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9729,10 +8135,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 794, @@ -9740,13 +8142,7 @@ export const trace: GethTrace = { gas: 49975542, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000077", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000120", - ], + stack: ["0xce6d41de", "0x77", "0x80", "0xc0", "0x120"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9759,10 +8155,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 795, @@ -9770,13 +8162,7 @@ export const trace: GethTrace = { gas: 49975539, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000077", - ], + stack: ["0xce6d41de", "0x120", "0x80", "0xc0", "0x77"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9789,10 +8175,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 796, @@ -9800,13 +8182,7 @@ export const trace: GethTrace = { gas: 49975536, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000077", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0xce6d41de", "0x120", "0x77", "0xc0", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9819,10 +8195,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 797, @@ -9830,12 +8202,7 @@ export const trace: GethTrace = { gas: 49975534, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000077", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x120", "0x77", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9848,10 +8215,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 798, @@ -9859,11 +8222,7 @@ export const trace: GethTrace = { gas: 49975532, gasCost: 8, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000077", - ], + stack: ["0xce6d41de", "0x120", "0x77"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9876,10 +8235,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 119, @@ -9887,10 +8242,7 @@ export const trace: GethTrace = { gas: 49975524, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - ], + stack: ["0xce6d41de", "0x120"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9903,10 +8255,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 120, @@ -9914,10 +8262,7 @@ export const trace: GethTrace = { gas: 49975523, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - ], + stack: ["0xce6d41de", "0x120"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9930,10 +8275,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 122, @@ -9941,11 +8282,7 @@ export const trace: GethTrace = { gas: 49975520, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "0000000000000000000000000000000000000000000000000000000000000040", - ], + stack: ["0xce6d41de", "0x120", "0x40"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9958,10 +8295,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 123, @@ -9969,11 +8302,7 @@ export const trace: GethTrace = { gas: 49975517, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x120", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -9986,10 +8315,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 124, @@ -9997,12 +8322,7 @@ export const trace: GethTrace = { gas: 49975514, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000120", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x120", "0xc0", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10015,10 +8335,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 125, @@ -10026,12 +8342,7 @@ export const trace: GethTrace = { gas: 49975511, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000120", - ], + stack: ["0xce6d41de", "0xc0", "0xc0", "0x120"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10044,10 +8355,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 126, @@ -10055,11 +8362,7 @@ export const trace: GethTrace = { gas: 49975508, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000060", - ], + stack: ["0xce6d41de", "0xc0", "0x60"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10072,10 +8375,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, { pc: 127, @@ -10083,11 +8382,7 @@ export const trace: GethTrace = { gas: 49975505, gasCost: 0, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000ce6d41de", - "0000000000000000000000000000000000000000000000000000000000000060", - "00000000000000000000000000000000000000000000000000000000000000c0", - ], + stack: ["0xce6d41de", "0x60", "0xc0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -10100,10 +8395,6 @@ export const trace: GethTrace = { "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: { - "0000000000000000000000000000000000000000000000000000000000000000": - "48656c6c6f2066726f6d20636f6e747261637421000000000000000000000028", - }, }, ], }; diff --git a/hardhat-tests/test/fixture-debug-traces/traceCall/contractAGetMessageDebugConfig.ts b/hardhat-tests/test/fixture-debug-traces/traceCall/contractAGetMessageDebugConfig.ts index b34c9d2fa1..f93289db0a 100644 --- a/hardhat-tests/test/fixture-debug-traces/traceCall/contractAGetMessageDebugConfig.ts +++ b/hardhat-tests/test/fixture-debug-traces/traceCall/contractAGetMessageDebugConfig.ts @@ -1,12 +1,76 @@ import { GethTrace } from "../types"; -// Trace generated using Geth 1.12.2 +// Trace generated using Geth 1.16.7 +// +// Start the Geth dev node with debug API enabled: +// ```bash +// docker run -it --rm -p 8545:8545 -p 8546:8546 ethereum/client-go:stable --dev --http --http.addr 0.0.0.0 --http.api eth,net,debug --ws --ws.addr 0.0.0.0 --ws.api eth,net,debug +// ``` +// +// Add the following code to `scripts/simulate-geth.mts`: +// ```ts +// import * as viem from "viem"; +// +// const url = "http://localhost:8546"; // For WSL: "http://10.0.0.43:8545"; +// const data = `0x60806040526040518060400160405280601481526020017f48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000815250600090816200004a9190620002d9565b503480156200005857600080fd5b50620003c0565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620000e157607f821691505b602082108103620000f757620000f662000099565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000122565b6200016d868362000122565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620001ba620001b4620001ae8462000185565b6200018f565b62000185565b9050919050565b6000819050919050565b620001d68362000199565b620001ee620001e582620001c1565b8484546200012f565b825550505050565b600090565b62000205620001f6565b62000212818484620001cb565b505050565b5b818110156200023a576200022e600082620001fb565b60018101905062000218565b5050565b601f82111562000289576200025381620000fd565b6200025e8462000112565b810160208510156200026e578190505b620002866200027d8562000112565b83018262000217565b50505b505050565b600082821c905092915050565b6000620002ae600019846008026200028e565b1980831691505092915050565b6000620002c983836200029b565b9150826002028217905092915050565b620002e4826200005f565b67ffffffffffffffff8111156200030057620002ff6200006a565b5b6200030c8254620000c8565b620003198282856200023e565b600060209050601f8311600181146200035157600084156200033c578287015190505b620003488582620002bb565b865550620003b8565b601f1984166200036186620000fd565b60005b828110156200038b5784890151825560018201915060208501945060208101905062000364565b86831015620003ab5784890151620003a7601f8916826200029b565b8355505b6001600288020188555050505b505050505050565b61044780620003d06000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c8063922af8a714610046578063ce6d41de14610062578063e21f37ce14610080575b600080fd5b610060600480360381019061005b9190610240565b61009e565b005b61006a6100e5565b60405161007791906102fd565b60405180910390f35b610088610177565b60405161009591906102fd565b60405180910390f35b60058110156100e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100d990610391565b60405180910390fd5b50565b6060600080546100f4906103e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610120906103e0565b801561016d5780601f106101425761010080835404028352916020019161016d565b820191906000526020600020905b81548152906001019060200180831161015057829003601f168201915b5050505050905090565b60008054610184906103e0565b80601f01602080910402602001604051908101604052809291908181526020018280546101b0906103e0565b80156101fd5780601f106101d2576101008083540402835291602001916101fd565b820191906000526020600020905b8154815290600101906020018083116101e057829003601f168201915b505050505081565b600080fd5b6000819050919050565b61021d8161020a565b811461022857600080fd5b50565b60008135905061023a81610214565b92915050565b60006020828403121561025657610255610205565b5b60006102648482850161022b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156102a757808201518184015260208101905061028c565b60008484015250505050565b6000601f19601f8301169050919050565b60006102cf8261026d565b6102d98185610278565b93506102e9818560208601610289565b6102f2816102b3565b840191505092915050565b6000602082019050818103600083015261031781846102c4565b905092915050565b7f4e756d626572206d7573742062652067726561746572207468616e206f72206560008201527f7175616c20746f20350000000000000000000000000000000000000000000000602082015250565b600061037b602983610278565b91506103868261031f565b604082019050919050565b600060208201905081810360008301526103aa8161036e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806103f857607f821691505b60208210810361040b5761040a6103b1565b5b5091905056fea264697066735822122020ca109dafe8d18c33567a0178897e773d2e68d523f0a39ee5b9080615a8774964736f6c63430008120033`; +// +// const publicClient = viem +// .createPublicClient({ +// transport: viem.http(url), +// }) +// .extend((client) => ({ +// async traceCall(args: viem.CallParameters) { +// return client.request({ +// method: "debug_traceCall", +// params: [ +// viem.formatTransactionRequest(args) as any, +// "latest", +// { +// disableStorage: true, +// disableMemory: true, +// disableStack: true, +// } as any, +// ], +// }); +// }, +// })); +// const walletClient = viem.createWalletClient({ +// transport: viem.http(url), +// }); +// +// const [gethAccount] = await walletClient.getAddresses(); +// const gethClient = viem.createWalletClient({ +// transport: viem.http(url), +// account: gethAccount, +// }); +// +// const deploymentTx = await gethClient.sendTransaction({ +// data, +// chain: null, +// }); +// +// const receipt = await publicClient.waitForTransactionReceipt({ +// hash: deploymentTx, +// }); +// +// const contractAddress = receipt.contractAddress; +// const trace = await publicClient.traceCall({ +// to: contractAddress, +// data: "0xce6d41de", // getMessage() selector +// }); +// console.log("Trace result:", JSON.stringify(trace, null, 2)); +// ``` +// +// Run the script with: +// ```bash +// npx tsx scripts/simulate-geth.mts &> debug.txt +// ``` export const trace: GethTrace = { gas: 24495, failed: false, returnValue: - "0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001448656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001448656c6c6f2066726f6d20636f6e747261637421000000000000000000000000", structLogs: [ { pc: 0, diff --git a/hardhat-tests/test/fixture-debug-traces/traceCall/contractAThrowError.ts b/hardhat-tests/test/fixture-debug-traces/traceCall/contractAThrowError.ts index 5be81755a5..8329a233b7 100644 --- a/hardhat-tests/test/fixture-debug-traces/traceCall/contractAThrowError.ts +++ b/hardhat-tests/test/fixture-debug-traces/traceCall/contractAThrowError.ts @@ -1,12 +1,76 @@ import { GethTrace } from "../types"; - -// Trace generated using Geth 1.12.2 +// Trace generated using Geth 1.16.7 +// +// Start the Geth dev node with debug API enabled: +// ```bash +// docker run -it --rm -p 8545:8545 -p 8546:8546 ethereum/client-go:stable --dev --http --http.addr 0.0.0.0 --http.api eth,net,debug --ws --ws.addr 0.0.0.0 --ws.api eth,net,debug +// ``` +// +// Add the following code to `scripts/simulate-geth.mts`: +// ```ts +// import * as viem from "viem"; +// +// const url = "http://10.0.0.43:8545"; +// const data = `0x60806040526040518060400160405280601481526020017f48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000815250600090816200004a9190620002d9565b503480156200005857600080fd5b50620003c0565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620000e157607f821691505b602082108103620000f757620000f662000099565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000122565b6200016d868362000122565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620001ba620001b4620001ae8462000185565b6200018f565b62000185565b9050919050565b6000819050919050565b620001d68362000199565b620001ee620001e582620001c1565b8484546200012f565b825550505050565b600090565b62000205620001f6565b62000212818484620001cb565b505050565b5b818110156200023a576200022e600082620001fb565b60018101905062000218565b5050565b601f82111562000289576200025381620000fd565b6200025e8462000112565b810160208510156200026e578190505b620002866200027d8562000112565b83018262000217565b50505b505050565b600082821c905092915050565b6000620002ae600019846008026200028e565b1980831691505092915050565b6000620002c983836200029b565b9150826002028217905092915050565b620002e4826200005f565b67ffffffffffffffff8111156200030057620002ff6200006a565b5b6200030c8254620000c8565b620003198282856200023e565b600060209050601f8311600181146200035157600084156200033c578287015190505b620003488582620002bb565b865550620003b8565b601f1984166200036186620000fd565b60005b828110156200038b5784890151825560018201915060208501945060208101905062000364565b86831015620003ab5784890151620003a7601f8916826200029b565b8355505b6001600288020188555050505b505050505050565b61044780620003d06000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c8063922af8a714610046578063ce6d41de14610062578063e21f37ce14610080575b600080fd5b610060600480360381019061005b9190610240565b61009e565b005b61006a6100e5565b60405161007791906102fd565b60405180910390f35b610088610177565b60405161009591906102fd565b60405180910390f35b60058110156100e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100d990610391565b60405180910390fd5b50565b6060600080546100f4906103e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610120906103e0565b801561016d5780601f106101425761010080835404028352916020019161016d565b820191906000526020600020905b81548152906001019060200180831161015057829003601f168201915b5050505050905090565b60008054610184906103e0565b80601f01602080910402602001604051908101604052809291908181526020018280546101b0906103e0565b80156101fd5780601f106101d2576101008083540402835291602001916101fd565b820191906000526020600020905b8154815290600101906020018083116101e057829003601f168201915b505050505081565b600080fd5b6000819050919050565b61021d8161020a565b811461022857600080fd5b50565b60008135905061023a81610214565b92915050565b60006020828403121561025657610255610205565b5b60006102648482850161022b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156102a757808201518184015260208101905061028c565b60008484015250505050565b6000601f19601f8301169050919050565b60006102cf8261026d565b6102d98185610278565b93506102e9818560208601610289565b6102f2816102b3565b840191505092915050565b6000602082019050818103600083015261031781846102c4565b905092915050565b7f4e756d626572206d7573742062652067726561746572207468616e206f72206560008201527f7175616c20746f20350000000000000000000000000000000000000000000000602082015250565b600061037b602983610278565b91506103868261031f565b604082019050919050565b600060208201905081810360008301526103aa8161036e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806103f857607f821691505b60208210810361040b5761040a6103b1565b5b5091905056fea264697066735822122020ca109dafe8d18c33567a0178897e773d2e68d523f0a39ee5b9080615a8774964736f6c63430008120033`; +// +// const publicClient = viem +// .createPublicClient({ +// transport: viem.http(url), +// }) +// .extend((client) => ({ +// async traceCall(args: viem.CallParameters) { +// return client.request({ +// method: "debug_traceCall", +// params: [ +// viem.formatTransactionRequest(args) as any, +// "latest", +// { +// enableMemory: true, +// } as any, +// ], +// }); +// }, +// })); +// const walletClient = viem.createWalletClient({ +// transport: viem.http(url), +// }); +// +// const [gethAccount] = await walletClient.getAddresses(); +// +// const gethClient = viem.createWalletClient({ +// transport: viem.http(url), +// account: gethAccount, +// }); +// +// const deploymentTx = await gethClient.sendTransaction({ +// data, +// chain: null, +// }); +// +// const receipt = await publicClient.waitForTransactionReceipt({ +// hash: deploymentTx, +// }); +// +// const contractAddress = receipt.contractAddress; +// +// const trace = await publicClient.traceCall({ +// to: contractAddress, +// data: "0x922af8a70000000000000000000000000000000000000000000000000000000000000001", // requireGreaterThanFive() selector +// }); +// +// console.log("Trace result:", JSON.stringify(trace, null, 2)); +// ``` +// +// Run the script with: +// ```bash +// npx tsx scripts/simulate-geth.mts &> debug.txt +// ``` export const trace: GethTrace = { gas: 21919, failed: true, returnValue: - "08c379a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000294e756d626572206d7573742062652067726561746572207468616e206f7220657175616c20746f20350000000000000000000000000000000000000000000000", + "0x08c379a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000294e756d626572206d7573742062652067726561746572207468616e206f7220657175616c20746f20350000000000000000000000000000000000000000000000", structLogs: [ { pc: 0, @@ -15,8 +79,6 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [], - memory: [], - storage: {}, }, { pc: 2, @@ -24,11 +86,7 @@ export const trace: GethTrace = { gas: 49978793, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - ], - memory: [], - storage: {}, + stack: ["0x80"], }, { pc: 4, @@ -36,16 +94,7 @@ export const trace: GethTrace = { gas: 49978790, gasCost: 12, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - ], - memory: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], - storage: {}, + stack: ["0x80", "0x40"], }, { pc: 5, @@ -59,7 +108,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 6, @@ -67,15 +115,12 @@ export const trace: GethTrace = { gas: 49978776, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 7, @@ -83,16 +128,12 @@ export const trace: GethTrace = { gas: 49978773, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 8, @@ -100,16 +141,12 @@ export const trace: GethTrace = { gas: 49978770, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x0", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 11, @@ -117,17 +154,12 @@ export const trace: GethTrace = { gas: 49978767, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000010", - ], + stack: ["0x0", "0x1", "0x10"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 16, @@ -135,15 +167,12 @@ export const trace: GethTrace = { gas: 49978757, gasCost: 1, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 17, @@ -151,15 +180,12 @@ export const trace: GethTrace = { gas: 49978756, gasCost: 2, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 18, @@ -173,7 +199,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 20, @@ -181,15 +206,12 @@ export const trace: GethTrace = { gas: 49978751, gasCost: 2, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 21, @@ -197,16 +219,12 @@ export const trace: GethTrace = { gas: 49978749, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x4", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 22, @@ -214,15 +232,12 @@ export const trace: GethTrace = { gas: 49978746, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 25, @@ -230,16 +245,12 @@ export const trace: GethTrace = { gas: 49978743, gasCost: 10, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000041", - ], + stack: ["0x0", "0x41"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 26, @@ -253,7 +264,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 28, @@ -261,15 +271,12 @@ export const trace: GethTrace = { gas: 49978730, gasCost: 3, depth: 1, - stack: [ - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 29, @@ -278,14 +285,13 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "922af8a700000000000000000000000000000000000000000000000000000000", + "0x922af8a700000000000000000000000000000000000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 31, @@ -294,15 +300,14 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "922af8a700000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", + "0x922af8a700000000000000000000000000000000000000000000000000000000", + "0xe0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 32, @@ -310,15 +315,12 @@ export const trace: GethTrace = { gas: 49978721, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - ], + stack: ["0x922af8a7"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 33, @@ -326,16 +328,12 @@ export const trace: GethTrace = { gas: 49978718, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "00000000000000000000000000000000000000000000000000000000922af8a7", - ], + stack: ["0x922af8a7", "0x922af8a7"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 38, @@ -343,17 +341,12 @@ export const trace: GethTrace = { gas: 49978715, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "00000000000000000000000000000000000000000000000000000000922af8a7", - "00000000000000000000000000000000000000000000000000000000922af8a7", - ], + stack: ["0x922af8a7", "0x922af8a7", "0x922af8a7"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 39, @@ -361,16 +354,12 @@ export const trace: GethTrace = { gas: 49978712, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x922af8a7", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 42, @@ -378,17 +367,12 @@ export const trace: GethTrace = { gas: 49978709, gasCost: 10, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000046", - ], + stack: ["0x922af8a7", "0x1", "0x46"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 70, @@ -396,15 +380,12 @@ export const trace: GethTrace = { gas: 49978699, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - ], + stack: ["0x922af8a7"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 71, @@ -412,15 +393,12 @@ export const trace: GethTrace = { gas: 49978698, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - ], + stack: ["0x922af8a7"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 74, @@ -428,16 +406,12 @@ export const trace: GethTrace = { gas: 49978695, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - ], + stack: ["0x922af8a7", "0x60"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 76, @@ -445,17 +419,12 @@ export const trace: GethTrace = { gas: 49978692, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x922af8a7", "0x60", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 77, @@ -463,18 +432,12 @@ export const trace: GethTrace = { gas: 49978689, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x922af8a7", "0x60", "0x4", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 78, @@ -482,19 +445,12 @@ export const trace: GethTrace = { gas: 49978687, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x922af8a7", "0x60", "0x4", "0x4", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 79, @@ -502,18 +458,12 @@ export const trace: GethTrace = { gas: 49978684, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x922af8a7", "0x60", "0x4", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 80, @@ -521,19 +471,12 @@ export const trace: GethTrace = { gas: 49978681, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x922af8a7", "0x60", "0x4", "0x20", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 81, @@ -541,18 +484,12 @@ export const trace: GethTrace = { gas: 49978678, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x922af8a7", "0x60", "0x4", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 82, @@ -560,18 +497,12 @@ export const trace: GethTrace = { gas: 49978675, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x922af8a7", "0x60", "0x24", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 85, @@ -579,19 +510,12 @@ export const trace: GethTrace = { gas: 49978672, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000005b", - ], + stack: ["0x922af8a7", "0x60", "0x24", "0x4", "0x5b"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 86, @@ -599,19 +523,12 @@ export const trace: GethTrace = { gas: 49978669, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x4", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 87, @@ -619,19 +536,12 @@ export const trace: GethTrace = { gas: 49978666, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 90, @@ -639,20 +549,12 @@ export const trace: GethTrace = { gas: 49978663, gasCost: 8, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000240", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x240"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 576, @@ -660,19 +562,12 @@ export const trace: GethTrace = { gas: 49978655, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 577, @@ -680,19 +575,12 @@ export const trace: GethTrace = { gas: 49978654, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 579, @@ -700,20 +588,12 @@ export const trace: GethTrace = { gas: 49978651, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 581, @@ -721,21 +601,12 @@ export const trace: GethTrace = { gas: 49978648, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x0", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 582, @@ -744,21 +615,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 583, @@ -767,22 +637,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 584, @@ -791,21 +660,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 585, @@ -813,21 +681,12 @@ export const trace: GethTrace = { gas: 49978636, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x0", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 586, @@ -835,21 +694,12 @@ export const trace: GethTrace = { gas: 49978633, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x0", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 589, @@ -858,21 +708,20 @@ export const trace: GethTrace = { gasCost: 10, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000256", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x1", + "0x256", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 598, @@ -880,20 +729,12 @@ export const trace: GethTrace = { gas: 49978620, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 599, @@ -901,20 +742,12 @@ export const trace: GethTrace = { gas: 49978619, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 601, @@ -922,21 +755,12 @@ export const trace: GethTrace = { gas: 49978616, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x0", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 604, @@ -945,21 +769,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 605, @@ -968,22 +791,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 606, @@ -992,23 +814,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 607, @@ -1017,24 +838,23 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x0", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 608, @@ -1043,23 +863,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 611, @@ -1068,24 +887,23 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000022b", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x22b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 555, @@ -1094,23 +912,22 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 556, @@ -1119,23 +936,22 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 558, @@ -1144,24 +960,23 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 559, @@ -1170,25 +985,24 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x0", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 560, @@ -1197,25 +1011,24 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 561, @@ -1224,25 +1037,24 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 562, @@ -1251,24 +1063,23 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 565, @@ -1277,25 +1088,24 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 566, @@ -1304,26 +1114,25 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 569, @@ -1332,27 +1141,26 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000214", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x214", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 532, @@ -1361,26 +1169,25 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 533, @@ -1389,26 +1196,25 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 536, @@ -1417,27 +1223,26 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x21d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 537, @@ -1446,28 +1251,27 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x21d", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 540, @@ -1476,29 +1280,28 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000020a", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x21d", + "0x1", + "0x20a", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 522, @@ -1507,28 +1310,27 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x21d", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 523, @@ -1537,28 +1339,27 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x21d", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 525, @@ -1567,29 +1368,28 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x21d", + "0x1", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 526, @@ -1598,30 +1398,29 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x21d", + "0x1", + "0x0", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 527, @@ -1630,30 +1429,29 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x21d", + "0x1", + "0x1", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 528, @@ -1662,29 +1460,28 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x21d", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 529, @@ -1693,29 +1490,28 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x1", + "0x1", + "0x21d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 530, @@ -1724,29 +1520,28 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x1", + "0x21d", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 531, @@ -1755,28 +1550,27 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000021d", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x1", + "0x21d", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 541, @@ -1785,27 +1579,26 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 542, @@ -1814,27 +1607,26 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 543, @@ -1843,28 +1635,27 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 544, @@ -1873,27 +1664,26 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 547, @@ -1902,28 +1692,27 @@ export const trace: GethTrace = { gasCost: 10, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000228", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", + "0x1", + "0x228", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 552, @@ -1932,26 +1721,25 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 553, @@ -1960,26 +1748,25 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 554, @@ -1988,25 +1775,24 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000023a", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", + "0x23a", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 570, @@ -2015,24 +1801,23 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 571, @@ -2041,24 +1826,23 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x264", + "0x24", + "0x4", + "0x1", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 572, @@ -2067,24 +1851,23 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000264", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1", + "0x24", + "0x4", + "0x264", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 573, @@ -2093,24 +1876,23 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1", + "0x264", + "0x4", + "0x24", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 574, @@ -2119,23 +1901,22 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000264", - "0000000000000000000000000000000000000000000000000000000000000004", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1", + "0x264", + "0x4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 575, @@ -2144,22 +1925,21 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000264", + "0x922af8a7", + "0x60", + "0x5b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1", + "0x264", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 612, @@ -2167,22 +1947,12 @@ export const trace: GethTrace = { gas: 49978462, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x0", "0x0", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 613, @@ -2190,22 +1960,12 @@ export const trace: GethTrace = { gas: 49978461, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x0", "0x0", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 614, @@ -2213,22 +1973,12 @@ export const trace: GethTrace = { gas: 49978458, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x1", "0x0", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 615, @@ -2236,21 +1986,12 @@ export const trace: GethTrace = { gas: 49978456, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x1", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 616, @@ -2258,20 +1999,12 @@ export const trace: GethTrace = { gas: 49978454, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x922af8a7", "0x60", "0x5b", "0x24", "0x4", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 617, @@ -2279,20 +2012,12 @@ export const trace: GethTrace = { gas: 49978451, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000024", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000005b", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x24", "0x4", "0x5b"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 618, @@ -2300,20 +2025,12 @@ export const trace: GethTrace = { gas: 49978448, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000024", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x5b", "0x4", "0x24"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 619, @@ -2321,19 +2038,12 @@ export const trace: GethTrace = { gas: 49978446, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000005b", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x5b", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 620, @@ -2341,18 +2051,12 @@ export const trace: GethTrace = { gas: 49978444, gasCost: 8, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000005b", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x5b"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 91, @@ -2360,17 +2064,12 @@ export const trace: GethTrace = { gas: 49978436, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x922af8a7", "0x60", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 92, @@ -2378,17 +2077,12 @@ export const trace: GethTrace = { gas: 49978435, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x922af8a7", "0x60", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 95, @@ -2396,18 +2090,12 @@ export const trace: GethTrace = { gas: 49978432, gasCost: 8, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000009e", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x9e"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 158, @@ -2415,17 +2103,12 @@ export const trace: GethTrace = { gas: 49978424, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x922af8a7", "0x60", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 159, @@ -2433,17 +2116,12 @@ export const trace: GethTrace = { gas: 49978423, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x922af8a7", "0x60", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 161, @@ -2451,18 +2129,12 @@ export const trace: GethTrace = { gas: 49978420, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000005", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x5"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 162, @@ -2470,19 +2142,12 @@ export const trace: GethTrace = { gas: 49978417, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000005", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x5", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 163, @@ -2490,18 +2155,12 @@ export const trace: GethTrace = { gas: 49978414, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 164, @@ -2509,18 +2168,12 @@ export const trace: GethTrace = { gas: 49978411, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 167, @@ -2528,19 +2181,12 @@ export const trace: GethTrace = { gas: 49978408, gasCost: 10, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e2", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x0", "0xe2"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 168, @@ -2548,17 +2194,12 @@ export const trace: GethTrace = { gas: 49978398, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - ], + stack: ["0x922af8a7", "0x60", "0x1"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 170, @@ -2566,18 +2207,12 @@ export const trace: GethTrace = { gas: 49978395, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x40"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 171, @@ -2585,18 +2220,12 @@ export const trace: GethTrace = { gas: 49978392, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 204, @@ -2605,18 +2234,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "08c379a000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x1", + "0x80", + "0x8c379a000000000000000000000000000000000000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", ], - storage: {}, }, { pc: 205, @@ -2625,21 +2253,18 @@ export const trace: GethTrace = { gasCost: 9, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "08c379a000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", + "0x922af8a7", + "0x60", + "0x1", + "0x80", + "0x8c379a000000000000000000000000000000000000000000000000000000000", + "0x80", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 206, @@ -2647,12 +2272,7 @@ export const trace: GethTrace = { gas: 49978377, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2660,7 +2280,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 208, @@ -2668,13 +2287,7 @@ export const trace: GethTrace = { gas: 49978374, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x80", "0x4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2682,7 +2295,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 209, @@ -2690,12 +2302,7 @@ export const trace: GethTrace = { gas: 49978371, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000084", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x84"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2703,7 +2310,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 212, @@ -2711,13 +2317,7 @@ export const trace: GethTrace = { gas: 49978368, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000d9", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x84", "0xd9"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2725,7 +2325,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 213, @@ -2733,13 +2332,7 @@ export const trace: GethTrace = { gas: 49978365, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2747,7 +2340,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 216, @@ -2755,14 +2347,7 @@ export const trace: GethTrace = { gas: 49978362, gasCost: 8, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000391", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0x391"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2770,7 +2355,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 913, @@ -2778,13 +2362,7 @@ export const trace: GethTrace = { gas: 49978354, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2792,7 +2370,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 914, @@ -2800,13 +2377,7 @@ export const trace: GethTrace = { gas: 49978353, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2814,7 +2385,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 916, @@ -2822,14 +2392,7 @@ export const trace: GethTrace = { gas: 49978350, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2837,7 +2400,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 918, @@ -2845,15 +2407,7 @@ export const trace: GethTrace = { gas: 49978347, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0x0", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2861,7 +2415,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 919, @@ -2870,14 +2423,14 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000084", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0x0", + "0x20", + "0x84", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -2886,7 +2439,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 920, @@ -2894,15 +2446,7 @@ export const trace: GethTrace = { gas: 49978341, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0x0", "0xa4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2910,7 +2454,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 921, @@ -2918,15 +2461,7 @@ export const trace: GethTrace = { gas: 49978338, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0xa4", "0x0"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2934,7 +2469,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 922, @@ -2942,14 +2476,7 @@ export const trace: GethTrace = { gas: 49978336, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0xa4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2957,7 +2484,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 923, @@ -2965,15 +2491,7 @@ export const trace: GethTrace = { gas: 49978333, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000084", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0xa4", "0x84"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -2981,7 +2499,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 924, @@ -2990,14 +2507,14 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x84", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3006,7 +2523,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 925, @@ -3014,15 +2530,7 @@ export const trace: GethTrace = { gas: 49978327, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0xa4", "0x20"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3030,7 +2538,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 927, @@ -3039,14 +2546,14 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x20", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3055,7 +2562,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 928, @@ -3064,15 +2570,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000084", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x20", + "0x0", + "0x84", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3081,7 +2587,6 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 929, @@ -3090,14 +2595,14 @@ export const trace: GethTrace = { gasCost: 6, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000084", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x20", + "0x84", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3105,9 +2610,7 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 930, @@ -3115,14 +2618,7 @@ export const trace: GethTrace = { gas: 49978312, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0xa4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3131,7 +2627,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 933, @@ -3139,15 +2634,7 @@ export const trace: GethTrace = { gas: 49978309, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0xa4", "0x3aa"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -3156,7 +2643,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 934, @@ -3165,14 +2651,14 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3182,7 +2668,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 937, @@ -3191,15 +2676,15 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "000000000000000000000000000000000000000000000000000000000000036e", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x36e", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3209,7 +2694,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 878, @@ -3218,14 +2702,14 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3235,7 +2719,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 879, @@ -3244,14 +2727,14 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3261,7 +2744,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 881, @@ -3270,15 +2752,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3288,7 +2770,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 884, @@ -3297,16 +2778,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3316,7 +2797,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 886, @@ -3325,17 +2805,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3345,7 +2825,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 887, @@ -3354,18 +2833,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3375,7 +2854,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 890, @@ -3384,19 +2862,19 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000278", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", + "0x278", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3406,7 +2884,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 632, @@ -3415,18 +2892,18 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3436,7 +2913,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 633, @@ -3445,18 +2921,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3466,7 +2942,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 635, @@ -3475,19 +2950,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3497,7 +2972,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 636, @@ -3506,20 +2980,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000029", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", + "0x0", + "0x29", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3529,7 +3003,6 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 637, @@ -3538,21 +3011,21 @@ export const trace: GethTrace = { gasCost: 6, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", + "0x0", + "0x29", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3561,9 +3034,7 @@ export const trace: GethTrace = { "0000000000000000000000000000000000000000000000000000000000000000", "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 638, @@ -3572,19 +3043,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3595,7 +3066,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 640, @@ -3604,20 +3074,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", + "0x0", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3628,7 +3098,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 641, @@ -3637,21 +3106,21 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", + "0x0", + "0x20", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3662,7 +3131,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 642, @@ -3671,20 +3139,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", + "0x0", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3695,7 +3163,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 643, @@ -3704,20 +3171,20 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", + "0xc4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3728,7 +3195,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 644, @@ -3737,19 +3203,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000037b", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0x37b", + "0x29", + "0xa4", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3760,7 +3226,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 645, @@ -3769,19 +3234,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000029", - "00000000000000000000000000000000000000000000000000000000000000a4", - "000000000000000000000000000000000000000000000000000000000000037b", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0xc4", + "0x29", + "0xa4", + "0x37b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3792,7 +3257,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 646, @@ -3801,19 +3265,19 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "000000000000000000000000000000000000000000000000000000000000037b", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000029", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0xc4", + "0x37b", + "0xa4", + "0x29", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3824,7 +3288,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 647, @@ -3833,18 +3296,18 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "000000000000000000000000000000000000000000000000000000000000037b", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0xc4", + "0x37b", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3855,7 +3318,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 648, @@ -3864,17 +3326,17 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", - "000000000000000000000000000000000000000000000000000000000000037b", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0xc4", + "0x37b", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3885,7 +3347,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 891, @@ -3894,16 +3355,16 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3914,7 +3375,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 892, @@ -3923,16 +3383,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xa4", + "0x0", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3943,7 +3403,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 893, @@ -3952,16 +3411,16 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0xa4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -3972,7 +3431,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 894, @@ -3981,15 +3439,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4000,7 +3458,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 897, @@ -4009,16 +3466,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4029,7 +3486,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 898, @@ -4038,17 +3494,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4059,7 +3515,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 901, @@ -4068,18 +3523,18 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "000000000000000000000000000000000000000000000000000000000000031f", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", + "0x31f", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4090,7 +3545,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 799, @@ -4099,17 +3553,17 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4120,7 +3574,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 800, @@ -4129,17 +3582,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4150,7 +3603,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 833, @@ -4159,18 +3611,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "4e756d626572206d7573742062652067726561746572207468616e206f722065", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", + "0x4e756d626572206d7573742062652067726561746572207468616e206f722065", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4181,7 +3633,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 835, @@ -4190,19 +3641,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "4e756d626572206d7573742062652067726561746572207468616e206f722065", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", + "0x4e756d626572206d7573742062652067726561746572207468616e206f722065", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4213,7 +3664,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 836, @@ -4222,20 +3672,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "4e756d626572206d7573742062652067726561746572207468616e206f722065", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", + "0x4e756d626572206d7573742062652067726561746572207468616e206f722065", + "0x0", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4246,7 +3696,6 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 837, @@ -4255,19 +3704,19 @@ export const trace: GethTrace = { gasCost: 6, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "4e756d626572206d7573742062652067726561746572207468616e206f722065", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", + "0x4e756d626572206d7573742062652067726561746572207468616e206f722065", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4277,9 +3726,7 @@ export const trace: GethTrace = { "08c379a000000000000000000000000000000000000000000000000000000000", "0000002000000000000000000000000000000000000000000000000000000000", "0000002900000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 838, @@ -4288,17 +3735,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4310,7 +3757,6 @@ export const trace: GethTrace = { "000000294e756d626572206d7573742062652067726561746572207468616e20", "6f72206500000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 871, @@ -4319,18 +3765,18 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "7175616c20746f20350000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", + "0x7175616c20746f20350000000000000000000000000000000000000000000000", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4342,7 +3788,6 @@ export const trace: GethTrace = { "000000294e756d626572206d7573742062652067726561746572207468616e20", "6f72206500000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 873, @@ -4351,19 +3796,19 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "7175616c20746f20350000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", + "0x7175616c20746f20350000000000000000000000000000000000000000000000", + "0x20", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4375,7 +3820,6 @@ export const trace: GethTrace = { "000000294e756d626572206d7573742062652067726561746572207468616e20", "6f72206500000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 874, @@ -4384,20 +3828,20 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "7175616c20746f20350000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", + "0x7175616c20746f20350000000000000000000000000000000000000000000000", + "0x20", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4409,7 +3853,6 @@ export const trace: GethTrace = { "000000294e756d626572206d7573742062652067726561746572207468616e20", "6f72206500000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 875, @@ -4418,19 +3861,19 @@ export const trace: GethTrace = { gasCost: 6, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", - "7175616c20746f20350000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", + "0x7175616c20746f20350000000000000000000000000000000000000000000000", + "0xe4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4441,9 +3884,7 @@ export const trace: GethTrace = { "0000002000000000000000000000000000000000000000000000000000000000", "000000294e756d626572206d7573742062652067726561746572207468616e20", "6f72206500000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 876, @@ -4452,17 +3893,17 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4475,7 +3916,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 877, @@ -4484,16 +3924,16 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000386", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x386", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4506,7 +3946,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 902, @@ -4515,15 +3954,15 @@ export const trace: GethTrace = { gasCost: 1, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4536,7 +3975,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 903, @@ -4545,15 +3983,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4566,7 +4004,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 905, @@ -4575,16 +4012,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x40", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4597,7 +4034,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 906, @@ -4606,17 +4042,17 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x40", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4629,7 +4065,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 907, @@ -4638,16 +4073,16 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000104", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x0", + "0x104", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4660,7 +4095,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 908, @@ -4669,16 +4103,16 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000104", - "0000000000000000000000000000000000000000000000000000000000000000", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x104", + "0x0", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4691,7 +4125,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 909, @@ -4700,15 +4133,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", - "0000000000000000000000000000000000000000000000000000000000000104", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x3aa", + "0xc4", + "0x104", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4721,7 +4154,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 910, @@ -4730,15 +4162,15 @@ export const trace: GethTrace = { gasCost: 3, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000104", - "00000000000000000000000000000000000000000000000000000000000000c4", - "00000000000000000000000000000000000000000000000000000000000003aa", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x104", + "0xc4", + "0x3aa", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4751,7 +4183,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 911, @@ -4760,15 +4191,15 @@ export const trace: GethTrace = { gasCost: 2, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000104", - "00000000000000000000000000000000000000000000000000000000000003aa", - "00000000000000000000000000000000000000000000000000000000000000c4", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x104", + "0x3aa", + "0xc4", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4781,7 +4212,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 912, @@ -4790,14 +4220,14 @@ export const trace: GethTrace = { gasCost: 8, depth: 1, stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000104", - "00000000000000000000000000000000000000000000000000000000000003aa", + "0x922af8a7", + "0x60", + "0x1", + "0xd9", + "0x84", + "0xa4", + "0x104", + "0x3aa", ], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", @@ -4810,7 +4240,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 938, @@ -4818,15 +4247,7 @@ export const trace: GethTrace = { gas: 49978122, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000104", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0xa4", "0x104"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4838,7 +4259,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 939, @@ -4846,15 +4266,7 @@ export const trace: GethTrace = { gas: 49978121, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000a4", - "0000000000000000000000000000000000000000000000000000000000000104", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0xa4", "0x104"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4866,7 +4278,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 940, @@ -4874,15 +4285,7 @@ export const trace: GethTrace = { gas: 49978118, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000104", - "00000000000000000000000000000000000000000000000000000000000000a4", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0x104", "0xa4"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4894,7 +4297,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 941, @@ -4902,14 +4304,7 @@ export const trace: GethTrace = { gas: 49978116, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000104", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0xd9", "0x84", "0x104"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4921,7 +4316,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 942, @@ -4929,14 +4323,7 @@ export const trace: GethTrace = { gas: 49978113, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - "0000000000000000000000000000000000000000000000000000000000000084", - "00000000000000000000000000000000000000000000000000000000000000d9", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x104", "0x84", "0xd9"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4948,7 +4335,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 943, @@ -4956,14 +4342,7 @@ export const trace: GethTrace = { gas: 49978110, gasCost: 2, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - "00000000000000000000000000000000000000000000000000000000000000d9", - "0000000000000000000000000000000000000000000000000000000000000084", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x104", "0xd9", "0x84"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -4975,7 +4354,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 944, @@ -4983,13 +4361,7 @@ export const trace: GethTrace = { gas: 49978108, gasCost: 8, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - "00000000000000000000000000000000000000000000000000000000000000d9", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x104", "0xd9"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5001,7 +4373,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 217, @@ -5009,12 +4380,7 @@ export const trace: GethTrace = { gas: 49978100, gasCost: 1, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x104"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5026,7 +4392,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 218, @@ -5034,12 +4399,7 @@ export const trace: GethTrace = { gas: 49978099, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x104"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5051,7 +4411,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 220, @@ -5059,13 +4418,7 @@ export const trace: GethTrace = { gas: 49978096, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - "0000000000000000000000000000000000000000000000000000000000000040", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x104", "0x40"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5077,7 +4430,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 221, @@ -5085,13 +4437,7 @@ export const trace: GethTrace = { gas: 49978093, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x104", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5103,7 +4449,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 222, @@ -5111,14 +4456,7 @@ export const trace: GethTrace = { gas: 49978090, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000104", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x104", "0x80", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5130,7 +4468,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 223, @@ -5138,14 +4475,7 @@ export const trace: GethTrace = { gas: 49978087, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000104", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x80", "0x80", "0x104"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5157,7 +4487,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 224, @@ -5165,13 +4494,7 @@ export const trace: GethTrace = { gas: 49978084, gasCost: 3, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x80", "0x84"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5183,7 +4506,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, { pc: 225, @@ -5191,13 +4513,7 @@ export const trace: GethTrace = { gas: 49978081, gasCost: 0, depth: 1, - stack: [ - "00000000000000000000000000000000000000000000000000000000922af8a7", - "0000000000000000000000000000000000000000000000000000000000000060", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000080", - ], + stack: ["0x922af8a7", "0x60", "0x1", "0x84", "0x80"], memory: [ "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", @@ -5209,7 +4525,6 @@ export const trace: GethTrace = { "6f7220657175616c20746f203500000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", ], - storage: {}, }, ], }; diff --git a/hardhat-tests/test/fixture-debug-traces/traceCall/ethTransfer.ts b/hardhat-tests/test/fixture-debug-traces/traceCall/ethTransfer.ts index aa452c63bf..38b8b6ecb1 100644 --- a/hardhat-tests/test/fixture-debug-traces/traceCall/ethTransfer.ts +++ b/hardhat-tests/test/fixture-debug-traces/traceCall/ethTransfer.ts @@ -1,10 +1,73 @@ import { GethTrace } from "../types"; -// Trace generated using Geth 1.12.2 +// Trace generated using Geth 1.16.7 +// +// Start the Geth dev node with debug API enabled: +// ```bash +// docker run -it --rm -p 8545:8545 -p 8546:8546 ethereum/client-go:stable --dev --http --http.addr 0.0.0.0 --http.api eth,net,debug --ws --ws.addr 0.0.0.0 --ws.api eth,net,debug +// ``` +// +// Add the following code to `scripts/simulate-geth.mts`: +// ```ts +// import * as viem from "viem"; +// +// const url = "http://localhost:8546"; // For WSL: "http://10.0.0.43:8545"; +// const data = `0x60806040526040518060400160405280601481526020017f48656c6c6f2066726f6d20636f6e747261637421000000000000000000000000815250600090816200004a9190620002d9565b503480156200005857600080fd5b50620003c0565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620000e157607f821691505b602082108103620000f757620000f662000099565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000122565b6200016d868362000122565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620001ba620001b4620001ae8462000185565b6200018f565b62000185565b9050919050565b6000819050919050565b620001d68362000199565b620001ee620001e582620001c1565b8484546200012f565b825550505050565b600090565b62000205620001f6565b62000212818484620001cb565b505050565b5b818110156200023a576200022e600082620001fb565b60018101905062000218565b5050565b601f82111562000289576200025381620000fd565b6200025e8462000112565b810160208510156200026e578190505b620002866200027d8562000112565b83018262000217565b50505b505050565b600082821c905092915050565b6000620002ae600019846008026200028e565b1980831691505092915050565b6000620002c983836200029b565b9150826002028217905092915050565b620002e4826200005f565b67ffffffffffffffff8111156200030057620002ff6200006a565b5b6200030c8254620000c8565b620003198282856200023e565b600060209050601f8311600181146200035157600084156200033c578287015190505b620003488582620002bb565b865550620003b8565b601f1984166200036186620000fd565b60005b828110156200038b5784890151825560018201915060208501945060208101905062000364565b86831015620003ab5784890151620003a7601f8916826200029b565b8355505b6001600288020188555050505b505050505050565b61044780620003d06000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c8063922af8a714610046578063ce6d41de14610062578063e21f37ce14610080575b600080fd5b610060600480360381019061005b9190610240565b61009e565b005b61006a6100e5565b60405161007791906102fd565b60405180910390f35b610088610177565b60405161009591906102fd565b60405180910390f35b60058110156100e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100d990610391565b60405180910390fd5b50565b6060600080546100f4906103e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610120906103e0565b801561016d5780601f106101425761010080835404028352916020019161016d565b820191906000526020600020905b81548152906001019060200180831161015057829003601f168201915b5050505050905090565b60008054610184906103e0565b80601f01602080910402602001604051908101604052809291908181526020018280546101b0906103e0565b80156101fd5780601f106101d2576101008083540402835291602001916101fd565b820191906000526020600020905b8154815290600101906020018083116101e057829003601f168201915b505050505081565b600080fd5b6000819050919050565b61021d8161020a565b811461022857600080fd5b50565b60008135905061023a81610214565b92915050565b60006020828403121561025657610255610205565b5b60006102648482850161022b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156102a757808201518184015260208101905061028c565b60008484015250505050565b6000601f19601f8301169050919050565b60006102cf8261026d565b6102d98185610278565b93506102e9818560208601610289565b6102f2816102b3565b840191505092915050565b6000602082019050818103600083015261031781846102c4565b905092915050565b7f4e756d626572206d7573742062652067726561746572207468616e206f72206560008201527f7175616c20746f20350000000000000000000000000000000000000000000000602082015250565b600061037b602983610278565b91506103868261031f565b604082019050919050565b600060208201905081810360008301526103aa8161036e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806103f857607f821691505b60208210810361040b5761040a6103b1565b5b5091905056fea264697066735822122020ca109dafe8d18c33567a0178897e773d2e68d523f0a39ee5b9080615a8774964736f6c63430008120033`; +// +// const publicClient = viem +// .createPublicClient({ +// transport: viem.http(url), +// }) +// .extend((client) => ({ +// async traceCall(args: viem.CallParameters) { +// return client.request({ +// method: "debug_traceCall", +// params: [ +// viem.formatTransactionRequest(args) as any, +// "latest", +// { +// enableMemory: true, +// } as any, +// ], +// }); +// }, +// })); +// const walletClient = viem.createWalletClient({ +// transport: viem.http(url), +// }); +// +// const [gethAccount] = await walletClient.getAddresses(); +// const gethClient = viem.createWalletClient({ +// transport: viem.http(url), +// account: gethAccount, +// }); +// +// const deploymentTx = await gethClient.sendTransaction({ +// data, +// chain: null, +// }); +// +// const receipt = await publicClient.waitForTransactionReceipt({ +// hash: deploymentTx, +// }); +// +// const contractAddress = receipt.contractAddress; +// const trace = await publicClient.traceCall({ +// from: gethAccount, +// to: "0x94a48723b9b46b19c72e3091838d0522618b9363", +// value: 18n, +// }); +// console.log("Trace result:", JSON.stringify(trace, null, 2)); +// ``` +// +// Run the script with: +// ```bash +// npx tsx scripts/simulate-geth.mts &> debug.txt +// ``` export const trace: GethTrace = { gas: 21000, failed: false, - returnValue: "", + returnValue: "0x", structLogs: [], }; diff --git a/hardhat-tests/test/internal/hardhat-network/provider/modules/debug/traceCall.ts b/hardhat-tests/test/internal/hardhat-network/provider/modules/debug/traceCall.ts index 2408d7c074..d13712c35a 100644 --- a/hardhat-tests/test/internal/hardhat-network/provider/modules/debug/traceCall.ts +++ b/hardhat-tests/test/internal/hardhat-network/provider/modules/debug/traceCall.ts @@ -48,6 +48,9 @@ describe("Debug module", function () { gas: BASE_GAS_QUANTITY, }, "latest", + { + enableMemory: true, + }, ]); assertEqualTraces(trace, contractAGetMessageTrace); @@ -62,12 +65,16 @@ describe("Debug module", function () { gas: BASE_GAS_QUANTITY, }, // blockTag not defined, it should automatically default to "latest" + undefined, + { + enableMemory: true, + }, ]); assertEqualTraces(trace, contractAGetMessageTrace); }); - it("should get the correct trace when calling a function from contract A with a specific rpcDebugTracingConfig", async function () { + it("should get the correct trace when calling a function from contract A with a specific rpcDebugTracingConfig", async function () { const trace = await this.provider.send("debug_traceCall", [ { from: deployerAddress, @@ -100,6 +107,9 @@ describe("Debug module", function () { gas: BASE_GAS_QUANTITY, }, "latest", + { + enableMemory: true, + }, ]); assertEqualTraces(trace, contractAThrowError); @@ -113,6 +123,9 @@ describe("Debug module", function () { value: "0x12", }, "latest", + { + enableMemory: true, + }, ]); assertEqualTraces(trace, ethTransferTrace); @@ -133,7 +146,8 @@ describe("Debug module", function () { tracer: "unsupportedTracer", }, ], - "Hardhat currently only supports the default tracer, so no tracer parameter should be passed." + // TODO: https://github.com/NomicFoundation/edr/issues/1250 + "JS Tracer is not enabled" ); }); }); diff --git a/hardhat-tests/test/internal/hardhat-network/provider/modules/debug/traceTransaction.ts b/hardhat-tests/test/internal/hardhat-network/provider/modules/debug/traceTransaction.ts index c14325d3b3..33f25b8172 100644 --- a/hardhat-tests/test/internal/hardhat-network/provider/modules/debug/traceTransaction.ts +++ b/hardhat-tests/test/internal/hardhat-network/provider/modules/debug/traceTransaction.ts @@ -10,7 +10,6 @@ import _ from "lodash"; import { trace as mainnetPostLondonTxTrace } from "../../../../../fixture-debug-traces/mainnetPostLondonTxTrace"; import { trace as mainnetReturnsDataTrace } from "../../../../../fixture-debug-traces/mainnetReturnsDataTrace"; -import { trace as mainnetReturnsDataTraceGeth } from "../../../../../fixture-debug-traces/mainnetReturnsDataTraceGeth"; import { trace as mainnetRevertTrace } from "../../../../../fixture-debug-traces/mainnetRevertTrace"; import { trace as modifiesStateTrace } from "../../../../../fixture-debug-traces/modifiesStateTrace"; import { trace as elongatedMemoryRegressionTestTrace } from "../../../../../fixture-debug-traces/elongatedMemoryRegressionTestTrace"; @@ -31,7 +30,11 @@ import { PROVIDERS, } from "../../../helpers/providers"; import { sendDummyTransaction } from "../../../helpers/sendDummyTransaction"; -import { deployContract } from "../../../helpers/transactions"; +import { + deployContract, + getTxToDeployBytecode, + sendDeploymentTx, +} from "../../../helpers/transactions"; import { assertEqualTraces } from "../../utils/assertEqualTraces"; // TODO: temporarily skip some of the tests because the latest version of ethereumjs @@ -66,22 +69,27 @@ describe("Debug module", function () { assert.deepEqual(trace, { gas: 21_000, failed: false, - returnValue: "", + returnValue: "0x", structLogs: [], }); }); it("Should throw an error when the value passed as tracer is not supported", async function () { + const txHash = await sendDummyTransaction(this.provider, 0, { + from: DEFAULT_ACCOUNTS_ADDRESSES[1], + }); + await assertInvalidArgumentsError( this.provider, "debug_traceTransaction", [ - "0x1234567876543234567876543456765434567aeaeaed67616732632762762373", + txHash, { tracer: "unsupportedTracer", }, ], - "Hardhat currently only supports the default tracer, so no tracer parameter should be passed." + // TODO: https://github.com/NomicFoundation/edr/issues/1250 + "JS Tracer is not enabled" ); }); @@ -118,7 +126,7 @@ describe("Debug module", function () { assert.deepEqual(trace, { gas: 21_000, failed: false, - returnValue: "", + returnValue: "0x", structLogs: [], }); }); @@ -134,12 +142,18 @@ describe("Debug module", function () { from: DEFAULT_ACCOUNTS_ADDRESSES[1], to: contractAddress, data: `${EXAMPLE_CONTRACT.selectors.modifiesState}000000000000000000000000000000000000000000000000000000000000000a`, + gas: numberToRpcQuantity(6_000_000), }, ]); const trace: RpcDebugTraceOutput = await this.provider.send( "debug_traceTransaction", - [txHash] + [ + txHash, + { + enableMemory: true, + }, + ] ); assertEqualTraces(trace, modifiesStateTrace); @@ -165,7 +179,7 @@ describe("Debug module", function () { assert.deepEqual(trace, { gas: 21_000, failed: true, - returnValue: "", + returnValue: "0x", structLogs: [], }); }); @@ -173,20 +187,31 @@ describe("Debug module", function () { // Regression test, see issue: https://github.com/NomicFoundation/hardhat/issues/3858 it("The memory property should not have additional superfluous zeros", async function () { // push0 push0 mstore push0 - const bytecode = "0x5F5F525F"; - const address = "0x1234567890123456789012345678901234567890"; - - await this.provider.send("hardhat_setCode", [address, bytecode]); + const bytecode = "5F5F525F"; + const deploymentTx = { + ...getTxToDeployBytecode(bytecode), + gas: undefined, + gasPrice: undefined, + }; + + const contractAddress = await sendDeploymentTx( + this.provider, + deploymentTx + ); const tx = await this.provider.send("eth_sendTransaction", [ { from: DEFAULT_ACCOUNTS_ADDRESSES[2], - to: address, + to: contractAddress, + gas: numberToRpcQuantity(6_000_000), }, ]); const trace = await this.provider.send("debug_traceTransaction", [ tx, + { + enableMemory: true, + }, ]); assertEqualTraces(trace, elongatedMemoryRegressionTestTrace); @@ -215,7 +240,7 @@ describe("Debug module", function () { assert.deepEqual(trace, { gas: 23_400, failed: false, - returnValue: "", + returnValue: "0x", structLogs: [], }); }); @@ -272,17 +297,26 @@ describe("Debug module", function () { it("Should return the right values for a successful tx", async function () { const trace: RpcDebugTraceOutput = await provider.send( "debug_traceTransaction", - ["0x89ebeb319fcd7bda9c7f8c1b78a7571842a705425b175f24f34fe8e6c60580d4"] + [ + "0x89ebeb319fcd7bda9c7f8c1b78a7571842a705425b175f24f34fe8e6c60580d4", + { + enableMemory: true, + }, + ] ); assertEqualTraces(trace, mainnetReturnsDataTrace); - assertEqualTraces(trace, mainnetReturnsDataTraceGeth); }); it("Should return the right values for a reverted tx", async function () { const trace: RpcDebugTraceOutput = await provider.send( "debug_traceTransaction", - ["0x6214b912cc9916d8b7bf5f4ff876e259f5f3754ddebb6df8c8e897cad31ae148"] + [ + "0x6214b912cc9916d8b7bf5f4ff876e259f5f3754ddebb6df8c8e897cad31ae148", + { + enableMemory: true, + }, + ] ); assertEqualTraces(trace, mainnetRevertTrace); @@ -316,6 +350,7 @@ describe("Debug module", function () { "0x6214b912cc9916d8b7bf5f4ff876e259f5f3754ddebb6df8c8e897cad31ae148", { disableStack: true, + enableMemory: true, }, ] ); @@ -337,6 +372,7 @@ describe("Debug module", function () { "0x6214b912cc9916d8b7bf5f4ff876e259f5f3754ddebb6df8c8e897cad31ae148", { disableStorage: true, + enableMemory: true, }, ] ); @@ -397,9 +433,17 @@ describe("Debug module", function () { // see https://github.com/NomicFoundation/hardhat/issues/3519 it.skip("Should return the right values for a successful tx", async function () { + // This is an expensive test, so we increase the timeout + this.timeout(60_000); + const trace: RpcDebugTraceOutput = await provider.send( "debug_traceTransaction", - ["0xe0b1f8e11eb822107ddc35ce2d944147cc043acf680c39332ee95dd6508d107e"] + [ + "0xe0b1f8e11eb822107ddc35ce2d944147cc043acf680c39332ee95dd6508d107e", + { + enableMemory: true, + }, + ] ); assertEqualTraces(trace, mainnetPostLondonTxTrace); diff --git a/hardhat-tests/test/internal/hardhat-network/provider/utils/assertEqualTraces.ts b/hardhat-tests/test/internal/hardhat-network/provider/utils/assertEqualTraces.ts index aeef0b3327..cf61c2f9d9 100644 --- a/hardhat-tests/test/internal/hardhat-network/provider/utils/assertEqualTraces.ts +++ b/hardhat-tests/test/internal/hardhat-network/provider/utils/assertEqualTraces.ts @@ -6,22 +6,9 @@ export function assertEqualTraces( actual: RpcDebugTraceOutput, expected: RpcDebugTraceOutput ) { - // Deep copy because we modify the logs - actual = JSON.parse(JSON.stringify(actual)); - expected = JSON.parse(JSON.stringify(expected)); - assert.equal(actual.failed, expected.failed); assert.equal(actual.gas, expected.gas); - - // geth doesn't seem to include the returnValue - // assert.equal(actual.returnValue, expected.returnValue); - - // EthereumJS doesn't include STOP at the end when REVM does. - if (actual.structLogs.length === expected.structLogs.length + 1) { - if (actual.structLogs[actual.structLogs.length - 1].op === "STOP") { - actual.structLogs.pop(); - } - } + assert.equal(actual.returnValue, expected.returnValue); assert.equal(actual.structLogs.length, expected.structLogs.length); // Eslint complains about not modifying `i`, but we need to modify `expectedLog`. @@ -29,55 +16,13 @@ export function assertEqualTraces( for (let [i, expectedLog] of expected.structLogs.entries()) { const actualLog = actual.structLogs[i]; - // we ignore the gasCost of the last step because - // we don't guarantee that it's correct - if (i === expected.structLogs.length - 1) { - actualLog.gasCost = 0; - expectedLog.gasCost = 0; - } - - // We don't support gas computation for these opcodes yet in EDR and always return 0. - if ( - expectedLog.op === "CREATE" || - expectedLog.op === "CREATE2" || - expectedLog.op === "CALL" || - expectedLog.op === "CALLCODE" || - expectedLog.op === "DELEGATECALL" || - expectedLog.op === "STATICCALL" - ) { - actualLog.gasCost = 0; - expectedLog.gasCost = 0; - } - - // Fixture has deprecated name for KECCAK256 - if (actualLog.op === "KECCAK256") { - actualLog.op = "SHA3"; - } - - // REVM doesn't include memory expansion, but the fixture does + /// Reth returns an empty array for memory, whereas Geth omits it when it's empty if ( - i > 1 && - (expectedLog.op === "MSTORE" || - expectedLog.op === "STATICCALL" || - expectedLog.op === "CALLDATACOPY" || - expectedLog.op === "CODECOPY" || - expectedLog.op === "REVERT") && - // Only way to make eslint happy by strict checking for both null and undefined - expectedLog.memory !== null && - expectedLog.memory !== undefined && - actualLog.memory !== null && actualLog.memory !== undefined && - expected.structLogs[i - 1].memory !== null && - expected.structLogs[i - 1].memory !== undefined + actualLog.memory.length === 0 && + expectedLog.memory === undefined ) { - // Check for memory expansion - if ( - expectedLog.memory!.length > expected.structLogs[i - 1].memory!.length - ) { - while (expectedLog.memory!.length > actualLog.memory!.length) { - actualLog.memory!.push("0".repeat(64)); - } - } + expectedLog.memory = []; } assert.deepEqual( diff --git a/hardhat-tests/test/internal/hardhat-network/stack-traces/compilers-list.ts b/hardhat-tests/test/internal/hardhat-network/stack-traces/compilers-list.ts index 6d4c1ad3b0..ca3f09e68d 100644 --- a/hardhat-tests/test/internal/hardhat-network/stack-traces/compilers-list.ts +++ b/hardhat-tests/test/internal/hardhat-network/stack-traces/compilers-list.ts @@ -13,6 +13,8 @@ export interface SolidityCompiler { optimizer?: SolidityCompilerOptimizer; } +// Versions can be obtained from a `solc` compiler list like this one: +// export const solidityCompilers: SolidityCompiler[] = [ // 0.5 { @@ -268,7 +270,6 @@ export const solidityCompilers: SolidityCompiler[] = [ { solidityVersion: "0.8.26", compilerPath: "soljson-v0.8.26+commit.8a97fa7a.js", - latestSolcVersion: true, }, { solidityVersion: "0.8.26", @@ -277,12 +278,10 @@ export const solidityCompilers: SolidityCompiler[] = [ runs: 200, viaIR: true, }, - latestSolcVersion: true, }, { solidityVersion: "0.8.27", compilerPath: "soljson-v0.8.27+commit.40a35a09.js", - latestSolcVersion: true, }, { solidityVersion: "0.8.27", @@ -291,12 +290,10 @@ export const solidityCompilers: SolidityCompiler[] = [ runs: 200, viaIR: true, }, - latestSolcVersion: true, }, { solidityVersion: "0.8.28", compilerPath: "soljson-v0.8.28+commit.7893614a.js", - latestSolcVersion: true, }, { solidityVersion: "0.8.28", @@ -305,6 +302,79 @@ export const solidityCompilers: SolidityCompiler[] = [ runs: 200, viaIR: true, }, + }, + { + solidityVersion: "0.8.28", + compilerPath: "soljson-v0.8.28+commit.7893614a.js", + }, + { + solidityVersion: "0.8.28", + compilerPath: "soljson-v0.8.28+commit.7893614a.js", + optimizer: { + runs: 200, + viaIR: true, + }, + }, + { + solidityVersion: "0.8.29", + compilerPath: "soljson-v0.8.29+commit.ab55807c.js", + }, + { + solidityVersion: "0.8.29", + compilerPath: "soljson-v0.8.29+commit.ab55807c.js", + optimizer: { + runs: 200, + viaIR: true, + }, + }, + { + solidityVersion: "0.8.30", + compilerPath: "soljson-v0.8.30+commit.73712a01.js", + }, + { + solidityVersion: "0.8.30", + compilerPath: "soljson-v0.8.30+commit.73712a01.js", + optimizer: { + runs: 200, + viaIR: true, + }, + }, + { + solidityVersion: "0.8.31", + compilerPath: "soljson-v0.8.31+commit.fd3a2265.js", + }, + { + solidityVersion: "0.8.31", + compilerPath: "soljson-v0.8.31+commit.fd3a2265.js", + optimizer: { + runs: 200, + viaIR: true, + }, + }, + { + solidityVersion: "0.8.32", + compilerPath: "soljson-v0.8.32+commit.ebbd65e5.js", + }, + { + solidityVersion: "0.8.32", + compilerPath: "soljson-v0.8.32+commit.ebbd65e5.js", + optimizer: { + runs: 200, + viaIR: true, + }, + }, + { + solidityVersion: "0.8.33", + compilerPath: "soljson-v0.8.33+commit.64118f21.js", + latestSolcVersion: true, + }, + { + solidityVersion: "0.8.33", + compilerPath: "soljson-v0.8.33+commit.64118f21.js", + optimizer: { + runs: 200, + viaIR: true, + }, latestSolcVersion: true, }, ]; diff --git a/hardhat-tests/test/internal/hardhat-network/stack-traces/test.ts b/hardhat-tests/test/internal/hardhat-network/stack-traces/test.ts index 81b28dc982..5bfd9d01e2 100644 --- a/hardhat-tests/test/internal/hardhat-network/stack-traces/test.ts +++ b/hardhat-tests/test/internal/hardhat-network/stack-traces/test.ts @@ -1,5 +1,5 @@ import { - getLatestSupportedSolcVersion, + latestSupportedSolidityVersion, linkHexStringBytecode, stackTraceEntryTypeToString, TracingConfigWithBuffers, @@ -18,7 +18,6 @@ import { SolidityStackTraceEntry, StackTraceEntryType, } from "hardhat/internal/hardhat-network/stack-traces/solidity-stack-trace"; -import { SUPPORTED_SOLIDITY_VERSION_RANGE } from "hardhat/internal/hardhat-network/stack-traces/constants"; import { BuildInfo, CompilerInput, @@ -795,37 +794,9 @@ describe("Stack traces", function () { }); describe("Solidity support", function () { - it("check that the latest tested version is within the supported version range", async function () { - const latestSupportedVersion = getLatestTestedSolcVersion(); - assert.isTrue( - semver.satisfies( - latestSupportedVersion, - SUPPORTED_SOLIDITY_VERSION_RANGE - ), - `Expected ${latestSupportedVersion} to be within the ${SUPPORTED_SOLIDITY_VERSION_RANGE} range` - ); - - const nextPatchVersion = semver.inc(latestSupportedVersion, "patch")!; - const nextMinorVersion = semver.inc(latestSupportedVersion, "minor")!; - const nextMajorVersion = semver.inc(latestSupportedVersion, "major")!; - - assert.isFalse( - semver.satisfies(nextPatchVersion, SUPPORTED_SOLIDITY_VERSION_RANGE), - `Expected ${nextPatchVersion} to not be within the ${SUPPORTED_SOLIDITY_VERSION_RANGE} range` - ); - assert.isFalse( - semver.satisfies(nextMinorVersion, SUPPORTED_SOLIDITY_VERSION_RANGE), - `Expected ${nextMinorVersion} to not be within the ${SUPPORTED_SOLIDITY_VERSION_RANGE} range` - ); - assert.isFalse( - semver.satisfies(nextMajorVersion, SUPPORTED_SOLIDITY_VERSION_RANGE), - `Expected ${nextMajorVersion} to not be within the ${SUPPORTED_SOLIDITY_VERSION_RANGE} range` - ); - }); - it("check that the latest tested version matches the one that EDR exports", async function () { const latestSupportedVersion = getLatestTestedSolcVersion(); - const edrLatestSupportedVersion = getLatestSupportedSolcVersion(); + const edrLatestSupportedVersion = latestSupportedSolidityVersion(); assert.equal(latestSupportedVersion, edrLatestSupportedVersion); }); diff --git a/package.json b/package.json index ed8676c2a2..8a3e3beee5 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ }, "patchedDependencies": { "@defi-wonderland/smock@2.4.0": "patches/@defi-wonderland__smock@2.4.0.patch", - "hardhat@2.26.1": "patches/hardhat@2.26.1.patch", + "hardhat@2.28.0": "patches/hardhat@2.28.0.patch", "hardhat@3.0.15": "patches/hardhat@3.0.15.patch" } }, diff --git a/patches/hardhat@2.26.1.patch b/patches/hardhat@2.26.1.patch deleted file mode 100644 index ae24af560b..0000000000 --- a/patches/hardhat@2.26.1.patch +++ /dev/null @@ -1,1247 +0,0 @@ -diff --git a/internal/hardhat-network/provider/provider.d.ts b/internal/hardhat-network/provider/provider.d.ts -index 8fd0e3c63ee1e169a8c80ca82ac9c478c951390e..11617bed92165638e85730a5fa20ece4e01e5686 100644 ---- a/internal/hardhat-network/provider/provider.d.ts -+++ b/internal/hardhat-network/provider/provider.d.ts -@@ -5,7 +5,7 @@ import { EventEmitter } from "events"; - import { ForkConfig, GenesisAccount, IntervalMiningConfig, MempoolOrder } from "./node-types"; - import { LoggerConfig } from "./modules/logger"; - export declare const DEFAULT_COINBASE = "0xc014ba5ec014ba5ec014ba5ec014ba5ec014ba5e"; --export declare function getGlobalEdrContext(): EdrContext; -+export declare function getGlobalEdrContext(): Promise; - interface HardhatNetworkProviderConfig { - hardfork: string; - chainId: number; -@@ -30,13 +30,18 @@ interface HardhatNetworkProviderConfig { - enableRip7212: boolean; - } - export declare class EdrProviderWrapper extends EventEmitter implements EIP1193Provider { -- private readonly _provider; -- private readonly _node; -+ private _provider; -+ private readonly _providerConfig; -+ private readonly _loggerConfig; -+ private _node; -+ private readonly _subscriptionConfig; - private _failedStackTraces; - private _callOverrideCallback?; - private constructor(); - static create(config: HardhatNetworkProviderConfig, loggerConfig: LoggerConfig, tracingConfig?: TracingConfigWithBuffers): Promise; - request(args: RequestArguments): Promise; -+ private _addCompilationResult; -+ private _reset; - private _setCallOverrideCallback; - private _setVerboseTracing; - private _ethEventListener; -diff --git a/internal/hardhat-network/provider/provider.d.ts.map b/internal/hardhat-network/provider/provider.d.ts.map -index e4d21f016c6f70c14ef9814dc2a0cdc916b73f5a..662adee860ead8cfe88622a0e0d63d7198de227e 100644 ---- a/internal/hardhat-network/provider/provider.d.ts.map -+++ b/internal/hardhat-network/provider/provider.d.ts.map -@@ -1 +1 @@ --{"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../../src/internal/hardhat-network/provider/provider.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EACV,SAAS,EACT,eAAe,EAEf,0BAA0B,EAC1B,gBAAgB,EACjB,MAAM,gBAAgB,CAAC;AAExB,OAAO,KAAK,EACV,UAAU,EAKV,wBAAwB,EACzB,MAAM,sBAAsB,CAAC;AAG9B,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAoBtC,OAAO,EACL,UAAU,EACV,cAAc,EACd,oBAAoB,EACpB,YAAY,EACb,MAAM,cAAc,CAAC;AAUtB,OAAO,EAAE,YAAY,EAA8B,MAAM,kBAAkB,CAAC;AAO5E,eAAO,MAAM,gBAAgB,+CAA+C,CAAC;AAI7E,wBAAgB,mBAAmB,IAAI,UAAU,CAWhD;AAED,UAAU,4BAA4B;IACpC,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,OAAO,CAAC;IAClB,cAAc,EAAE,oBAAoB,CAAC;IACrC,YAAY,EAAE,YAAY,CAAC;IAC3B,MAAM,EAAE,0BAA0B,CAAC;IACnC,eAAe,EAAE,cAAc,EAAE,CAAC;IAClC,0BAA0B,EAAE,OAAO,CAAC;IACpC,0BAA0B,EAAE,OAAO,CAAC;IACpC,mBAAmB,EAAE,OAAO,CAAC;IAC7B,4BAA4B,EAAE,OAAO,CAAC;IAEtC,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,sBAAsB,EAAE,OAAO,CAAC;IAChC,aAAa,EAAE,OAAO,CAAC;CACxB;AAWD,qBAAa,kBACX,SAAQ,YACR,YAAW,eAAe;IAQxB,OAAO,CAAC,QAAQ,CAAC,SAAS;IAE1B,OAAO,CAAC,QAAQ,CAAC,KAAK;IARxB,OAAO,CAAC,kBAAkB,CAAK;IAG/B,OAAO,CAAC,qBAAqB,CAAC,CAAuB;IAErD,OAAO;WAUa,MAAM,CACxB,MAAM,EAAE,4BAA4B,EACpC,YAAY,EAAE,YAAY,EAC1B,aAAa,CAAC,EAAE,wBAAwB,GACvC,OAAO,CAAC,kBAAkB,CAAC;IAmIjB,OAAO,CAAC,IAAI,EAAE,gBAAgB,GAAG,OAAO,CAAC,OAAO,CAAC;IAuI9D,OAAO,CAAC,wBAAwB;IAUhC,OAAO,CAAC,kBAAkB;IAI1B,OAAO,CAAC,iBAAiB;IASzB,OAAO,CAAC,4BAA4B;IAOpC,OAAO,CAAC,6BAA6B;CAWtC;AAQD,wBAAsB,4BAA4B,CAChD,4BAA4B,EAAE,4BAA4B,EAC1D,YAAY,EAAE,YAAY,EAC1B,SAAS,CAAC,EAAE,SAAS,GACpB,OAAO,CAAC,eAAe,CAAC,CAY1B"} -\ No newline at end of file -+{"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../../src/internal/hardhat-network/provider/provider.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EACV,SAAS,EAGT,eAAe,EAEf,0BAA0B,EAC1B,gBAAgB,EACjB,MAAM,gBAAgB,CAAC;AAExB,OAAO,KAAK,EACV,UAAU,EAKV,wBAAwB,EAGzB,MAAM,sBAAsB,CAAC;AAK9B,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAgCtC,OAAO,EACL,UAAU,EACV,cAAc,EACd,oBAAoB,EACpB,YAAY,EACb,MAAM,cAAc,CAAC;AAWtB,OAAO,EAAE,YAAY,EAA8B,MAAM,kBAAkB,CAAC;AAO5E,eAAO,MAAM,gBAAgB,+CAA+C,CAAC;AAI7E,wBAAsB,mBAAmB,IAAI,OAAO,CAAC,UAAU,CAAC,CAgB/D;AAED,UAAU,4BAA4B;IACpC,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,OAAO,CAAC;IAClB,cAAc,EAAE,oBAAoB,CAAC;IACrC,YAAY,EAAE,YAAY,CAAC;IAC3B,MAAM,EAAE,0BAA0B,CAAC;IACnC,eAAe,EAAE,cAAc,EAAE,CAAC;IAClC,0BAA0B,EAAE,OAAO,CAAC;IACpC,0BAA0B,EAAE,OAAO,CAAC;IACpC,mBAAmB,EAAE,OAAO,CAAC;IAC7B,4BAA4B,EAAE,OAAO,CAAC;IAEtC,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,sBAAsB,EAAE,OAAO,CAAC;IAChC,aAAa,EAAE,OAAO,CAAC;CACxB;AAWD,qBAAa,kBACX,SAAQ,YACR,YAAW,eAAe;IAQxB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAE9B,OAAO,CAAC,KAAK;IAGb,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAbtC,OAAO,CAAC,kBAAkB,CAAK;IAG/B,OAAO,CAAC,qBAAqB,CAAC,CAAuB;IAErD,OAAO;WAaa,MAAM,CACxB,MAAM,EAAE,4BAA4B,EACpC,YAAY,EAAE,YAAY,EAC1B,aAAa,CAAC,EAAE,wBAAwB,GACvC,OAAO,CAAC,kBAAkB,CAAC;IAqKjB,OAAO,CAAC,IAAI,EAAE,gBAAgB,GAAG,OAAO,CAAC,OAAO,CAAC;YAiJhD,qBAAqB;YAerB,MAAM;YA2CN,wBAAwB;YAexB,kBAAkB;IAIhC,OAAO,CAAC,iBAAiB;IASzB,OAAO,CAAC,4BAA4B;IAOpC,OAAO,CAAC,6BAA6B;CAWtC;AAQD,wBAAsB,4BAA4B,CAChD,4BAA4B,EAAE,4BAA4B,EAC1D,YAAY,EAAE,YAAY,EAC1B,SAAS,CAAC,EAAE,SAAS,GACpB,OAAO,CAAC,eAAe,CAAC,CAY1B"} -\ No newline at end of file -diff --git a/internal/hardhat-network/provider/provider.js b/internal/hardhat-network/provider/provider.js -index c68092445cc8b68a0c26321c6bfba68294c5c22a..b49cac1a3258e415ae32f78129de5273fb1c9443 100644 ---- a/internal/hardhat-network/provider/provider.js -+++ b/internal/hardhat-network/provider/provider.js -@@ -1,15 +1,45 @@ - "use strict"; -+var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { -+ if (k2 === undefined) k2 = k; -+ var desc = Object.getOwnPropertyDescriptor(m, k); -+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { -+ desc = { enumerable: true, get: function() { return m[k]; } }; -+ } -+ Object.defineProperty(o, k2, desc); -+}) : (function(o, m, k, k2) { -+ if (k2 === undefined) k2 = k; -+ o[k2] = m[k]; -+})); -+var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { -+ Object.defineProperty(o, "default", { enumerable: true, value: v }); -+}) : function(o, v) { -+ o["default"] = v; -+}); -+var __importStar = (this && this.__importStar) || function (mod) { -+ if (mod && mod.__esModule) return mod; -+ var result = {}; -+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); -+ __setModuleDefault(result, mod); -+ return result; -+}; - var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - Object.defineProperty(exports, "__esModule", { value: true }); - exports.createHardhatNetworkProvider = exports.EdrProviderWrapper = exports.getGlobalEdrContext = exports.DEFAULT_COINBASE = void 0; -+const util_1 = require("@ethereumjs/util"); -+const edr_1 = require("@nomicfoundation/edr"); - const picocolors_1 = __importDefault(require("picocolors")); - const debug_1 = __importDefault(require("debug")); - const events_1 = require("events"); - const fs_extra_1 = __importDefault(require("fs-extra")); -+const t = __importStar(require("io-ts")); - const napi_rs_1 = require("../../../common/napi-rs"); - const constants_1 = require("../../constants"); -+const base_types_1 = require("../../core/jsonrpc/types/base-types"); -+const hardhat_network_1 = require("../../core/jsonrpc/types/input/hardhat-network"); -+const solc_1 = require("../../core/jsonrpc/types/input/solc"); -+const validation_1 = require("../../core/jsonrpc/types/input/validation"); - const errors_1 = require("../../core/providers/errors"); - const http_1 = require("../../core/providers/http"); - const hardforks_1 = require("../../util/hardforks"); -@@ -24,11 +54,12 @@ const log = (0, debug_1.default)("hardhat:core:hardhat-network:provider"); - exports.DEFAULT_COINBASE = "0xc014ba5ec014ba5ec014ba5ec014ba5ec014ba5e"; - let _globalEdrContext; - // Lazy initialize the global EDR context. --function getGlobalEdrContext() { -- const { EdrContext } = (0, napi_rs_1.requireNapiRsModule)("@nomicfoundation/edr"); -+async function getGlobalEdrContext() { -+ const { EdrContext, GENERIC_CHAIN_TYPE, genericChainProviderFactory } = (0, napi_rs_1.requireNapiRsModule)("@nomicfoundation/edr"); - if (_globalEdrContext === undefined) { - // Only one is allowed to exist - _globalEdrContext = new EdrContext(); -+ await _globalEdrContext.registerProviderFactory(GENERIC_CHAIN_TYPE, genericChainProviderFactory()); - } - return _globalEdrContext; - } -@@ -36,35 +67,41 @@ exports.getGlobalEdrContext = getGlobalEdrContext; - class EdrProviderEventAdapter extends events_1.EventEmitter { - } - class EdrProviderWrapper extends events_1.EventEmitter { -- constructor(_provider, -+ constructor(_provider, _providerConfig, _loggerConfig, - // we add this for backwards-compatibility with plugins like solidity-coverage -- _node) { -+ _node, _subscriptionConfig) { - super(); - this._provider = _provider; -+ this._providerConfig = _providerConfig; -+ this._loggerConfig = _loggerConfig; - this._node = _node; -+ this._subscriptionConfig = _subscriptionConfig; - this._failedStackTraces = 0; - } - static async create(config, loggerConfig, tracingConfig) { -- const { Provider } = (0, napi_rs_1.requireNapiRsModule)("@nomicfoundation/edr"); -+ const { GENERIC_CHAIN_TYPE, l1GenesisState, l1HardforkFromString } = (0, napi_rs_1.requireNapiRsModule)("@nomicfoundation/edr"); - const coinbase = config.coinbase ?? exports.DEFAULT_COINBASE; - let fork; - if (config.forkConfig !== undefined) { -- let httpHeaders; -- if (config.forkConfig.httpHeaders !== undefined) { -- httpHeaders = []; -- for (const [name, value] of Object.entries(config.forkConfig.httpHeaders)) { -- httpHeaders.push({ -- name, -- value, -- }); -- } -- } - fork = { -- jsonRpcUrl: config.forkConfig.jsonRpcUrl, - blockNumber: config.forkConfig.blockNumber !== undefined - ? BigInt(config.forkConfig.blockNumber) - : undefined, -- httpHeaders, -+ cacheDir: config.forkCachePath, -+ chainOverrides: Array.from(config.chains, ([chainId, hardforkConfig]) => { -+ return { -+ chainId: BigInt(chainId), -+ name: "Unknown", -+ hardforks: Array.from(hardforkConfig.hardforkHistory, ([hardfork, blockNumber]) => { -+ return { -+ condition: { blockNumber: BigInt(blockNumber) }, -+ hardfork: (0, convertToEdr_1.ethereumsjsHardforkToEdrSpecId)((0, hardforks_1.getHardforkName)(hardfork)), -+ }; -+ }), -+ }; -+ }), -+ httpHeaders: (0, convertToEdr_1.httpHeadersToEdr)(config.forkConfig.httpHeaders), -+ url: config.forkConfig.jsonRpcUrl, - }; - } - const initialDate = config.initialDate !== undefined -@@ -76,35 +113,31 @@ class EdrProviderWrapper extends events_1.EventEmitter { - const printLineFn = loggerConfig.printLineFn ?? logger_1.printLine; - const replaceLastLineFn = loggerConfig.replaceLastLineFn ?? logger_1.replaceLastLine; - const hardforkName = (0, hardforks_1.getHardforkName)(config.hardfork); -- const provider = await Provider.withConfig(getGlobalEdrContext(), { -+ const genesisState = fork !== undefined -+ ? [] // TODO: Add support for overriding remote fork state when the local fork is different -+ : l1GenesisState(l1HardforkFromString((0, convertToEdr_1.ethereumsjsHardforkToEdrSpecId)(hardforkName))); -+ const ownedAccounts = config.genesisAccounts.map((account) => { -+ const privateKey = Uint8Array.from( -+ // Strip the `0x` prefix -+ Buffer.from(account.privateKey.slice(2), "hex")); -+ genesisState.push({ -+ address: (0, util_1.privateToAddress)(privateKey), -+ balance: BigInt(account.balance), -+ }); -+ return account.privateKey; -+ }); -+ const edrProviderConfig = { - allowBlocksWithSameTimestamp: config.allowBlocksWithSameTimestamp ?? false, - allowUnlimitedContractSize: config.allowUnlimitedContractSize, - bailOnCallFailure: config.throwOnCallFailures, - bailOnTransactionFailure: config.throwOnTransactionFailures, - blockGasLimit: BigInt(config.blockGasLimit), - chainId: BigInt(config.chainId), -- chains: Array.from(config.chains, ([chainId, hardforkConfig]) => { -- return { -- chainId: BigInt(chainId), -- hardforks: Array.from(hardforkConfig.hardforkHistory, ([hardfork, blockNumber]) => { -- return { -- blockNumber: BigInt(blockNumber), -- specId: (0, convertToEdr_1.ethereumsjsHardforkToEdrSpecId)((0, hardforks_1.getHardforkName)(hardfork)), -- }; -- }), -- }; -- }), -- cacheDir: config.forkCachePath, - coinbase: Buffer.from(coinbase.slice(2), "hex"), -- enableRip7212: config.enableRip7212, -+ precompileOverrides: config.enableRip7212 ? [(0, edr_1.precompileP256Verify)()] : [], - fork, -+ genesisState, - hardfork: (0, convertToEdr_1.ethereumsjsHardforkToEdrSpecId)(hardforkName), -- genesisAccounts: config.genesisAccounts.map((account) => { -- return { -- secretKey: account.privateKey, -- balance: BigInt(account.balance), -- }; -- }), - initialDate, - initialBaseFeePerGas: config.initialBaseFeePerGas !== undefined - ? BigInt(config.initialBaseFeePerGas) -@@ -118,9 +151,16 @@ class EdrProviderWrapper extends events_1.EventEmitter { - }, - }, - networkId: BigInt(config.networkId), -- }, { -+ observability: {}, -+ ownedAccounts, -+ }; -+ const edrLoggerConfig = { - enable: loggerConfig.enabled, -- decodeConsoleLogInputsCallback: consoleLogger_1.ConsoleLogger.getDecodedLogs, -+ decodeConsoleLogInputsCallback: (inputs) => { -+ return consoleLogger_1.ConsoleLogger.getDecodedLogs(inputs.map((input) => { -+ return Buffer.from(input); -+ })); -+ }, - printLineCallback: (message, replace) => { - if (replace) { - replaceLastLineFn(message); -@@ -129,13 +169,20 @@ class EdrProviderWrapper extends events_1.EventEmitter { - printLineFn(message); - } - }, -- }, tracingConfig ?? {}, (event) => { -- eventAdapter.emit("ethEvent", event); -- }); -+ }; -+ const edrSubscriptionConfig = { -+ subscriptionCallback: (event) => { -+ eventAdapter.emit("ethEvent", event); -+ }, -+ }; -+ const edrTracingConfig = tracingConfig ?? {}; -+ const contractDecoder = edr_1.ContractDecoder.withContracts(edrTracingConfig); -+ const context = await getGlobalEdrContext(); -+ const provider = await context.createProvider(GENERIC_CHAIN_TYPE, edrProviderConfig, edrLoggerConfig, edrSubscriptionConfig, contractDecoder); - const minimalEthereumJsNode = { - _vm: (0, minimal_vm_1.getMinimalEthereumJsVm)(provider), - }; -- const wrapper = new EdrProviderWrapper(provider, minimalEthereumJsNode); -+ const wrapper = new EdrProviderWrapper(provider, edrProviderConfig, edrLoggerConfig, minimalEthereumJsNode, edrSubscriptionConfig); - // Pass through all events from the provider - eventAdapter.addListener("ethEvent", wrapper._ethEventListener.bind(wrapper)); - return wrapper; -@@ -145,9 +192,20 @@ class EdrProviderWrapper extends events_1.EventEmitter { - throw new errors_1.InvalidInputError("Hardhat Network doesn't support JSON-RPC params sent as an object"); - } - const params = args.params ?? []; -- if (args.method === "hardhat_getStackTraceFailuresCount") { -- // stubbed for backwards compatibility -- return 0; -+ // stubbed for backwards compatibility -+ switch (args.method) { -+ case "hardhat_getStackTraceFailuresCount": -+ return 0; -+ case "eth_mining": -+ return false; -+ case "net_listening": -+ return true; -+ case "net_peerCount": -+ return (0, base_types_1.numberToRpcQuantity)(0); -+ case "hardhat_reset": -+ return this._reset(..._resetParams(params)); -+ case "hardhat_addCompilationResult": -+ return this._addCompilationResult(..._addCompilationResultParams(params)); - } - const stringifiedArgs = JSON.stringify({ - method: args.method, -@@ -167,7 +225,7 @@ class EdrProviderWrapper extends events_1.EventEmitter { - const rawTraces = responseObject.traces; - for (const rawTrace of rawTraces) { - // For other consumers in JS we need to marshall the entire trace over FFI -- const trace = rawTrace.trace(); -+ const trace = rawTrace.trace; - // beforeTx event - if (this._node._vm.events.listenerCount("beforeTx") > 0) { - this._node._vm.events.emit("beforeTx"); -@@ -226,10 +284,7 @@ class EdrProviderWrapper extends events_1.EventEmitter { - // eslint-disable-next-line @nomicfoundation/hardhat-internal-rules/only-hardhat-error - throw error; - } -- if (args.method === "hardhat_reset") { -- this.emit(constants_1.HARDHAT_NETWORK_RESET_EVENT); -- } -- else if (args.method === "evm_revert") { -+ if (args.method === "evm_revert") { - this.emit(constants_1.HARDHAT_NETWORK_REVERT_SNAPSHOT_EVENT); - } - // Override EDR version string with Hardhat version string with EDR backend, -@@ -245,15 +300,52 @@ class EdrProviderWrapper extends events_1.EventEmitter { - return response.result; - } - } -+ async _addCompilationResult(solcVersion, input, output) { -+ try { -+ await this._provider.addCompilationResult(solcVersion, input, output); -+ return true; -+ } -+ catch (error) { -+ // eslint-disable-next-line @nomicfoundation/hardhat-internal-rules/only-hardhat-error -+ throw new errors_1.InternalError(error); -+ } -+ } -+ async _reset(networkConfig) { -+ const { GENERIC_CHAIN_TYPE } = (0, napi_rs_1.requireNapiRsModule)("@nomicfoundation/edr"); -+ const forkConfig = networkConfig?.forking; -+ if (forkConfig !== undefined) { -+ this._providerConfig.fork = { -+ blockNumber: forkConfig.blockNumber !== undefined -+ ? BigInt(forkConfig.blockNumber) -+ : undefined, -+ cacheDir: this._providerConfig.fork?.cacheDir, -+ chainOverrides: this._providerConfig.fork?.chainOverrides, -+ httpHeaders: (0, convertToEdr_1.httpHeadersToEdr)(forkConfig.httpHeaders), -+ url: forkConfig.jsonRpcUrl, -+ }; -+ } -+ else { -+ this._providerConfig.fork = undefined; -+ } -+ const context = await getGlobalEdrContext(); -+ const provider = await context.createProvider(GENERIC_CHAIN_TYPE, this._providerConfig, this._loggerConfig, this._subscriptionConfig, this._provider.contractDecoder()); -+ const minimalEthereumJsNode = { -+ _vm: (0, minimal_vm_1.getMinimalEthereumJsVm)(provider), -+ }; -+ this._provider = provider; -+ this._node = minimalEthereumJsNode; -+ this.emit(constants_1.HARDHAT_NETWORK_RESET_EVENT); -+ return true; -+ } - // temporarily added to make smock work with HH+EDR -- _setCallOverrideCallback(callback) { -+ async _setCallOverrideCallback(callback) { - this._callOverrideCallback = callback; -- this._provider.setCallOverrideCallback(async (address, data) => { -- return this._callOverrideCallback?.(address, data); -+ await this._provider.setCallOverrideCallback(async (address, data) => { -+ return this._callOverrideCallback?.(Buffer.from(address), Buffer.from(data)); - }); - } -- _setVerboseTracing(enabled) { -- this._provider.setVerboseTracing(enabled); -+ async _setVerboseTracing(enabled) { -+ await this._provider.setVerboseTracing(enabled); - } - _ethEventListener(event) { - const subscription = `0x${event.filterId.toString(16)}`; -@@ -310,4 +402,10 @@ async function makeTracingConfig(artifacts) { - } - } - } -+function _addCompilationResultParams(params) { -+ return (0, validation_1.validateParams)(params, t.string, solc_1.rpcCompilerInput, solc_1.rpcCompilerOutput); -+} -+function _resetParams(params) { -+ return (0, validation_1.validateParams)(params, hardhat_network_1.optionalRpcHardhatNetworkConfig); -+} - //# sourceMappingURL=provider.js.map -\ No newline at end of file -diff --git a/internal/hardhat-network/provider/provider.js.map b/internal/hardhat-network/provider/provider.js.map -index beca1ccfa4487fe67bc98ffc9d4ceb75d9504cbe..31b72469d314c1fa755323c2c7bf4def111f7dc4 100644 ---- a/internal/hardhat-network/provider/provider.js.map -+++ b/internal/hardhat-network/provider/provider.js.map -@@ -1 +1 @@ --{"version":3,"file":"provider.js","sourceRoot":"","sources":["../../../src/internal/hardhat-network/provider/provider.ts"],"names":[],"mappings":";;;;;;AAgBA,4DAAoC;AACpC,kDAA0B;AAC1B,mCAAsC;AACtC,wDAA+B;AAE/B,qDAA8D;AAC9D,+CAGyB;AACzB,wDAIqC;AACrC,oDAA4D;AAC5D,oDAAuD;AACvD,iEAA8D;AAC9D,qEAA2E;AAG3E,wDAAwD;AAOxD,uDAQ8B;AAC9B,6CAA4E;AAC5E,gDAA8E;AAE9E,MAAM,GAAG,GAAG,IAAA,eAAK,EAAC,uCAAuC,CAAC,CAAC;AAE3D,+EAA+E;AAElE,QAAA,gBAAgB,GAAG,4CAA4C,CAAC;AAC7E,IAAI,iBAAyC,CAAC;AAE9C,0CAA0C;AAC1C,SAAgB,mBAAmB;IACjC,MAAM,EAAE,UAAU,EAAE,GAAG,IAAA,6BAAmB,EACxC,sBAAsB,CACkB,CAAC;IAE3C,IAAI,iBAAiB,KAAK,SAAS,EAAE;QACnC,+BAA+B;QAC/B,iBAAiB,GAAG,IAAI,UAAU,EAAE,CAAC;KACtC;IAED,OAAO,iBAAiB,CAAC;AAC3B,CAAC;AAXD,kDAWC;AA2BD,MAAM,uBAAwB,SAAQ,qBAAY;CAAG;AASrD,MAAa,kBACX,SAAQ,qBAAY;IAQpB,YACmB,SAAuB;IACxC,8EAA8E;IAC7D,KAEhB;QAED,KAAK,EAAE,CAAC;QANS,cAAS,GAAT,SAAS,CAAc;QAEvB,UAAK,GAAL,KAAK,CAErB;QAVK,uBAAkB,GAAG,CAAC,CAAC;IAa/B,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAM,CACxB,MAAoC,EACpC,YAA0B,EAC1B,aAAwC;QAExC,MAAM,EAAE,QAAQ,EAAE,GAAG,IAAA,6BAAmB,EACtC,sBAAsB,CACkB,CAAC;QAE3C,MAAM,QAAQ,GAAG,MAAM,CAAC,QAAQ,IAAI,wBAAgB,CAAC;QAErD,IAAI,IAAI,CAAC;QACT,IAAI,MAAM,CAAC,UAAU,KAAK,SAAS,EAAE;YACnC,IAAI,WAAqC,CAAC;YAC1C,IAAI,MAAM,CAAC,UAAU,CAAC,WAAW,KAAK,SAAS,EAAE;gBAC/C,WAAW,GAAG,EAAE,CAAC;gBAEjB,KAAK,MAAM,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CACxC,MAAM,CAAC,UAAU,CAAC,WAAW,CAC9B,EAAE;oBACD,WAAW,CAAC,IAAI,CAAC;wBACf,IAAI;wBACJ,KAAK;qBACN,CAAC,CAAC;iBACJ;aACF;YAED,IAAI,GAAG;gBACL,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC,UAAU;gBACxC,WAAW,EACT,MAAM,CAAC,UAAU,CAAC,WAAW,KAAK,SAAS;oBACzC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC;oBACvC,CAAC,CAAC,SAAS;gBACf,WAAW;aACZ,CAAC;SACH;QAED,MAAM,WAAW,GACf,MAAM,CAAC,WAAW,KAAK,SAAS;YAC9B,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,WAAW,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,CAAC;YACzD,CAAC,CAAC,SAAS,CAAC;QAEhB,6EAA6E;QAC7E,0DAA0D;QAC1D,MAAM,YAAY,GAAG,IAAI,uBAAuB,EAAE,CAAC;QAEnD,MAAM,WAAW,GAAG,YAAY,CAAC,WAAW,IAAI,kBAAS,CAAC;QAC1D,MAAM,iBAAiB,GAAG,YAAY,CAAC,iBAAiB,IAAI,wBAAe,CAAC;QAE5E,MAAM,YAAY,GAAG,IAAA,2BAAe,EAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QAEtD,MAAM,QAAQ,GAAG,MAAM,QAAQ,CAAC,UAAU,CACxC,mBAAmB,EAAE,EACrB;YACE,4BAA4B,EAC1B,MAAM,CAAC,4BAA4B,IAAI,KAAK;YAC9C,0BAA0B,EAAE,MAAM,CAAC,0BAA0B;YAC7D,iBAAiB,EAAE,MAAM,CAAC,mBAAmB;YAC7C,wBAAwB,EAAE,MAAM,CAAC,0BAA0B;YAC3D,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC;YAC3C,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;YAC/B,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE,cAAc,CAAC,EAAE,EAAE;gBAC9D,OAAO;oBACL,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC;oBACxB,SAAS,EAAE,KAAK,CAAC,IAAI,CACnB,cAAc,CAAC,eAAe,EAC9B,CAAC,CAAC,QAAQ,EAAE,WAAW,CAAC,EAAE,EAAE;wBAC1B,OAAO;4BACL,WAAW,EAAE,MAAM,CAAC,WAAW,CAAC;4BAChC,MAAM,EAAE,IAAA,6CAA8B,EACpC,IAAA,2BAAe,EAAC,QAAQ,CAAC,CAC1B;yBACF,CAAC;oBACJ,CAAC,CACF;iBACF,CAAC;YACJ,CAAC,CAAC;YACF,QAAQ,EAAE,MAAM,CAAC,aAAa;YAC9B,QAAQ,EAAE,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC;YAC/C,aAAa,EAAE,MAAM,CAAC,aAAa;YACnC,IAAI;YACJ,QAAQ,EAAE,IAAA,6CAA8B,EAAC,YAAY,CAAC;YACtD,eAAe,EAAE,MAAM,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE;gBACtD,OAAO;oBACL,SAAS,EAAE,OAAO,CAAC,UAAU;oBAC7B,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC;iBACjC,CAAC;YACJ,CAAC,CAAC;YACF,WAAW;YACX,oBAAoB,EAClB,MAAM,CAAC,oBAAoB,KAAK,SAAS;gBACvC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,oBAAqB,CAAC;gBACtC,CAAC,CAAC,SAAS;YACf,WAAW,EAAE,MAAM,CAAC,WAAW;YAC/B,MAAM,EAAE;gBACN,QAAQ,EAAE,MAAM,CAAC,QAAQ;gBACzB,QAAQ,EAAE,IAAA,kDAAmC,EAAC,MAAM,CAAC,cAAc,CAAC;gBACpE,OAAO,EAAE;oBACP,KAAK,EAAE,IAAA,sDAAuC,EAAC,MAAM,CAAC,YAAY,CAAC;iBACpE;aACF;YACD,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC;SACpC,EACD;YACE,MAAM,EAAE,YAAY,CAAC,OAAO;YAC5B,8BAA8B,EAAE,6BAAa,CAAC,cAAc;YAC5D,iBAAiB,EAAE,CAAC,OAAe,EAAE,OAAgB,EAAE,EAAE;gBACvD,IAAI,OAAO,EAAE;oBACX,iBAAiB,CAAC,OAAO,CAAC,CAAC;iBAC5B;qBAAM;oBACL,WAAW,CAAC,OAAO,CAAC,CAAC;iBACtB;YACH,CAAC;SACF,EACD,aAAa,IAAI,EAAE,EACnB,CAAC,KAAwB,EAAE,EAAE;YAC3B,YAAY,CAAC,IAAI,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;QACvC,CAAC,CACF,CAAC;QAEF,MAAM,qBAAqB,GAAG;YAC5B,GAAG,EAAE,IAAA,mCAAsB,EAAC,QAAQ,CAAC;SACtC,CAAC;QAEF,MAAM,OAAO,GAAG,IAAI,kBAAkB,CAAC,QAAQ,EAAE,qBAAqB,CAAC,CAAC;QAExE,4CAA4C;QAC5C,YAAY,CAAC,WAAW,CACtB,UAAU,EACV,OAAO,CAAC,iBAAiB,CAAC,IAAI,CAAC,OAAO,CAAC,CACxC,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAEM,KAAK,CAAC,OAAO,CAAC,IAAsB;QACzC,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE;YAC5D,MAAM,IAAI,0BAAiB,CACzB,mEAAmE,CACpE,CAAC;SACH;QAED,MAAM,MAAM,GAAG,IAAI,CAAC,MAAM,IAAI,EAAE,CAAC;QAEjC,IAAI,IAAI,CAAC,MAAM,KAAK,oCAAoC,EAAE;YACxD,sCAAsC;YACtC,OAAO,CAAC,CAAC;SACV;QAED,MAAM,eAAe,GAAG,IAAI,CAAC,SAAS,CAAC;YACrC,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,MAAM;SACP,CAAC,CAAC;QAEH,MAAM,cAAc,GAAa,MAAM,IAAI,CAAC,SAAS,CAAC,aAAa,CACjE,eAAe,CAChB,CAAC;QAEF,IAAI,QAAQ,CAAC;QACb,IAAI,OAAO,cAAc,CAAC,IAAI,KAAK,QAAQ,EAAE;YAC3C,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;SAC5C;aAAM;YACL,QAAQ,GAAG,cAAc,CAAC,IAAI,CAAC;SAChC;QAED,MAAM,WAAW,GACf,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,MAAM,GAAG,CAAC;YACjD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC;QAEhD,IAAI,WAAW,EAAE;YACf,MAAM,SAAS,GAAG,cAAc,CAAC,MAAM,CAAC;YACxC,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE;gBAChC,0EAA0E;gBAC1E,MAAM,KAAK,GAAG,QAAQ,CAAC,KAAK,EAAE,CAAC;gBAE/B,iBAAiB;gBACjB,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;oBACvD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;iBACxC;gBAED,KAAK,MAAM,SAAS,IAAI,KAAK,EAAE;oBAC7B,aAAa;oBACb,IAAI,IAAI,IAAI,SAAS,EAAE;wBACrB,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;4BACvD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAC5B,MAAM,EACN,IAAA,qDAAsC,EAAC,SAAS,CAAC,CAClD,CAAC;yBACH;qBACF;oBACD,qBAAqB;yBAChB,IAAI,iBAAiB,IAAI,SAAS,EAAE;wBACvC,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,cAAc,CAAC,GAAG,CAAC,EAAE;4BAC/D,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAC5B,cAAc,EACd,IAAA,wDAAyC,EAAC,SAAS,CAAC,CACrD,CAAC;yBACH;qBACF;oBACD,sBAAsB;yBACjB;wBACH,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,eAAe,CAAC,GAAG,CAAC,EAAE;4BAChE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAC5B,eAAe,EACf,IAAA,gDAAiC,EAAC,SAAS,CAAC,CAC7C,CAAC;yBACH;qBACF;iBACF;gBAED,gBAAgB;gBAChB,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE;oBACtD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;iBACvC;aACF;SACF;QAED,IAAI,IAAA,sBAAe,EAAC,QAAQ,CAAC,EAAE;YAC7B,IAAI,KAAK,CAAC;YAEV,IAAI,UAAU,GAA8B,IAAI,CAAC;YACjD,IAAI;gBACF,UAAU,GAAG,cAAc,CAAC,UAAU,EAAE,CAAC;aAC1C;YAAC,OAAO,CAAC,EAAE;gBACV,GAAG,CAAC,+BAA+B,EAAE,CAAC,CAAC,CAAC;aACzC;YAED,IAAI,UAAU,KAAK,IAAI,EAAE;gBACvB,KAAK,GAAG,IAAA,0CAAwB,EAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC;gBACrE,yDAAyD;gBACxD,KAAa,CAAC,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,IAAI,SAAS,CAAC;gBAC5D,KAAa,CAAC,eAAe;oBAC5B,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,eAAe,IAAI,SAAS,CAAC;aACrD;iBAAM;gBACL,IAAI,QAAQ,CAAC,KAAK,CAAC,IAAI,KAAK,8BAAqB,CAAC,IAAI,EAAE;oBACtD,KAAK,GAAG,IAAI,8BAAqB,CAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;iBAC3D;qBAAM;oBACL,KAAK,GAAG,IAAI,sBAAa,CACvB,QAAQ,CAAC,KAAK,CAAC,OAAO,EACtB,QAAQ,CAAC,KAAK,CAAC,IAAI,CACpB,CAAC;iBACH;gBACD,KAAK,CAAC,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC;aAClC;YAED,sFAAsF;YACtF,MAAM,KAAK,CAAC;SACb;QAED,IAAI,IAAI,CAAC,MAAM,KAAK,eAAe,EAAE;YACnC,IAAI,CAAC,IAAI,CAAC,uCAA2B,CAAC,CAAC;SACxC;aAAM,IAAI,IAAI,CAAC,MAAM,KAAK,YAAY,EAAE;YACvC,IAAI,CAAC,IAAI,CAAC,iDAAqC,CAAC,CAAC;SAClD;QAED,4EAA4E;QAC5E,8DAA8D;QAC9D,IAAI,IAAI,CAAC,MAAM,KAAK,oBAAoB,EAAE;YACxC,OAAO,aAAa,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;SACvC;aAAM,IACL,IAAI,CAAC,MAAM,KAAK,wBAAwB;YACxC,IAAI,CAAC,MAAM,KAAK,iBAAiB,EACjC;YACA,OAAO,IAAA,wCAAyB,EAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;SACnD;aAAM;YACL,OAAO,QAAQ,CAAC,MAAM,CAAC;SACxB;IACH,CAAC;IAED,mDAAmD;IAC3C,wBAAwB,CAAC,QAA8B;QAC7D,IAAI,CAAC,qBAAqB,GAAG,QAAQ,CAAC;QAEtC,IAAI,CAAC,SAAS,CAAC,uBAAuB,CACpC,KAAK,EAAE,OAAe,EAAE,IAAY,EAAE,EAAE;YACtC,OAAO,IAAI,CAAC,qBAAqB,EAAE,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QACrD,CAAC,CACF,CAAC;IACJ,CAAC;IAEO,kBAAkB,CAAC,OAAgB;QACzC,IAAI,CAAC,SAAS,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC;IAC5C,CAAC;IAEO,iBAAiB,CAAC,KAAwB;QAChD,MAAM,YAAY,GAAG,KAAK,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE,CAAC;QACxD,MAAM,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAC5E,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE;YAC5B,IAAI,CAAC,4BAA4B,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;YACxD,IAAI,CAAC,6BAA6B,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;SAC1D;IACH,CAAC;IAEO,4BAA4B,CAAC,YAAoB,EAAE,MAAW;QACpE,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE;YACxB,YAAY;YACZ,MAAM;SACP,CAAC,CAAC;IACL,CAAC;IAEO,6BAA6B,CAAC,YAAoB,EAAE,MAAe;QACzE,MAAM,OAAO,GAAoB;YAC/B,IAAI,EAAE,kBAAkB;YACxB,IAAI,EAAE;gBACJ,YAAY;gBACZ,MAAM;aACP;SACF,CAAC;QAEF,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IAChC,CAAC;CACF;AA1UD,gDA0UC;AAED,KAAK,UAAU,aAAa,CAAC,gBAAwB;IACnD,MAAM,cAAc,GAAG,MAAM,IAAA,4BAAc,GAAE,CAAC;IAC9C,MAAM,UAAU,GAAG,gBAAgB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAClD,OAAO,kBAAkB,cAAc,CAAC,OAAO,yBAAyB,UAAU,EAAE,CAAC;AACvF,CAAC;AAEM,KAAK,UAAU,4BAA4B,CAChD,4BAA0D,EAC1D,YAA0B,EAC1B,SAAqB;IAErB,GAAG,CAAC,uBAAuB,CAAC,CAAC;IAC7B,MAAM,aAAa,GAAG,MAAM,iBAAiB,CAAC,SAAS,CAAC,CAAC;IACzD,GAAG,CAAC,uBAAuB,CAAC,CAAC;IAC7B,MAAM,QAAQ,GAAG,MAAM,kBAAkB,CAAC,MAAM,CAC9C,4BAA4B,EAC5B,YAAY,EACZ,aAAa,CACd,CAAC;IACF,GAAG,CAAC,sBAAsB,CAAC,CAAC;IAE5B,OAAO,QAAQ,CAAC;AAClB,CAAC;AAhBD,oEAgBC;AAED,KAAK,UAAU,iBAAiB,CAC9B,SAAgC;IAEhC,IAAI,SAAS,KAAK,SAAS,EAAE;QAC3B,MAAM,cAAc,GAAG,MAAM,SAAS,CAAC,iBAAiB,EAAE,CAAC;QAE3D,IAAI;YACF,MAAM,UAAU,GAAG,MAAM,OAAO,CAAC,GAAG,CAClC,cAAc,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,kBAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAC7D,CAAC;YAEF,OAAO;gBACL,UAAU;aACX,CAAC;SACH;QAAC,OAAO,KAAK,EAAE;YACd,OAAO,CAAC,IAAI,CACV,oBAAU,CAAC,MAAM,CACf,yFAAyF,CAC1F,CACF,CAAC;YAEF,GAAG,CACD,gIAAgI,EAChI,KAAK,CACN,CAAC;SACH;KACF;AACH,CAAC"} -\ No newline at end of file -+{"version":3,"file":"provider.js","sourceRoot":"","sources":["../../../src/internal/hardhat-network/provider/provider.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,2CAAoD;AACpD,8CAA6E;AAC7E,4DAAoC;AACpC,kDAA0B;AAC1B,mCAAsC;AACtC,wDAA+B;AAC/B,yCAA2B;AAE3B,qDAA8D;AAC9D,+CAGyB;AACzB,oEAA0E;AAC1E,oFAGwD;AACxD,8DAG6C;AAC7C,0EAA2E;AAC3E,wDAKqC;AACrC,oDAA4D;AAC5D,oDAAuD;AACvD,iEAA8D;AAC9D,qEAA2E;AAG3E,wDAAwD;AAOxD,uDAS8B;AAC9B,6CAA4E;AAC5E,gDAA8E;AAE9E,MAAM,GAAG,GAAG,IAAA,eAAK,EAAC,uCAAuC,CAAC,CAAC;AAE3D,+EAA+E;AAElE,QAAA,gBAAgB,GAAG,4CAA4C,CAAC;AAC7E,IAAI,iBAAyC,CAAC;AAE9C,0CAA0C;AACnC,KAAK,UAAU,mBAAmB;IACvC,MAAM,EAAE,UAAU,EAAE,kBAAkB,EAAE,2BAA2B,EAAE,GACnE,IAAA,6BAAmB,EACjB,sBAAsB,CACkB,CAAC;IAE7C,IAAI,iBAAiB,KAAK,SAAS,EAAE;QACnC,+BAA+B;QAC/B,iBAAiB,GAAG,IAAI,UAAU,EAAE,CAAC;QACrC,MAAM,iBAAiB,CAAC,uBAAuB,CAC7C,kBAAkB,EAClB,2BAA2B,EAAE,CAC9B,CAAC;KACH;IAED,OAAO,iBAAiB,CAAC;AAC3B,CAAC;AAhBD,kDAgBC;AA2BD,MAAM,uBAAwB,SAAQ,qBAAY;CAAG;AASrD,MAAa,kBACX,SAAQ,qBAAY;IAQpB,YACU,SAAuB,EACd,eAA+B,EAC/B,aAA8B;IAC/C,8EAA8E;IACtE,KAEP,EACgB,mBAAuC;QAExD,KAAK,EAAE,CAAC;QATA,cAAS,GAAT,SAAS,CAAc;QACd,oBAAe,GAAf,eAAe,CAAgB;QAC/B,kBAAa,GAAb,aAAa,CAAiB;QAEvC,UAAK,GAAL,KAAK,CAEZ;QACgB,wBAAmB,GAAnB,mBAAmB,CAAoB;QAblD,uBAAkB,GAAG,CAAC,CAAC;IAgB/B,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAM,CACxB,MAAoC,EACpC,YAA0B,EAC1B,aAAwC;QAExC,MAAM,EAAE,kBAAkB,EAAE,cAAc,EAAE,oBAAoB,EAAE,GAChE,IAAA,6BAAmB,EACjB,sBAAsB,CACkB,CAAC;QAE7C,MAAM,QAAQ,GAAG,MAAM,CAAC,QAAQ,IAAI,wBAAgB,CAAC;QAErD,IAAI,IAAI,CAAC;QACT,IAAI,MAAM,CAAC,UAAU,KAAK,SAAS,EAAE;YACnC,IAAI,GAAG;gBACL,WAAW,EACT,MAAM,CAAC,UAAU,CAAC,WAAW,KAAK,SAAS;oBACzC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC;oBACvC,CAAC,CAAC,SAAS;gBACf,QAAQ,EAAE,MAAM,CAAC,aAAa;gBAC9B,cAAc,EAAE,KAAK,CAAC,IAAI,CACxB,MAAM,CAAC,MAAM,EACb,CAAC,CAAC,OAAO,EAAE,cAAc,CAAC,EAAE,EAAE;oBAC5B,OAAO;wBACL,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC;wBACxB,IAAI,EAAE,SAAS;wBACf,SAAS,EAAE,KAAK,CAAC,IAAI,CACnB,cAAc,CAAC,eAAe,EAC9B,CAAC,CAAC,QAAQ,EAAE,WAAW,CAAC,EAAE,EAAE;4BAC1B,OAAO;gCACL,SAAS,EAAE,EAAE,WAAW,EAAE,MAAM,CAAC,WAAW,CAAC,EAAE;gCAC/C,QAAQ,EAAE,IAAA,6CAA8B,EACtC,IAAA,2BAAe,EAAC,QAAQ,CAAC,CAC1B;6BACF,CAAC;wBACJ,CAAC,CACF;qBACF,CAAC;gBACJ,CAAC,CACF;gBACD,WAAW,EAAE,IAAA,+BAAgB,EAAC,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC;gBAC5D,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC,UAAU;aAClC,CAAC;SACH;QAED,MAAM,WAAW,GACf,MAAM,CAAC,WAAW,KAAK,SAAS;YAC9B,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,WAAW,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,CAAC;YACzD,CAAC,CAAC,SAAS,CAAC;QAEhB,6EAA6E;QAC7E,0DAA0D;QAC1D,MAAM,YAAY,GAAG,IAAI,uBAAuB,EAAE,CAAC;QAEnD,MAAM,WAAW,GAAG,YAAY,CAAC,WAAW,IAAI,kBAAS,CAAC;QAC1D,MAAM,iBAAiB,GAAG,YAAY,CAAC,iBAAiB,IAAI,wBAAe,CAAC;QAE5E,MAAM,YAAY,GAAG,IAAA,2BAAe,EAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QAEtD,MAAM,YAAY,GAChB,IAAI,KAAK,SAAS;YAChB,CAAC,CAAC,EAAE,CAAC,sFAAsF;YAC3F,CAAC,CAAC,cAAc,CACZ,oBAAoB,CAAC,IAAA,6CAA8B,EAAC,YAAY,CAAC,CAAC,CACnE,CAAC;QAER,MAAM,aAAa,GAAG,MAAM,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE;YAC3D,MAAM,UAAU,GAAG,UAAU,CAAC,IAAI;YAChC,wBAAwB;YACxB,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAChD,CAAC;YAEF,YAAY,CAAC,IAAI,CAAC;gBAChB,OAAO,EAAE,IAAA,uBAAgB,EAAC,UAAU,CAAC;gBACrC,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC;aACjC,CAAC,CAAC;YAEH,OAAO,OAAO,CAAC,UAAU,CAAC;QAC5B,CAAC,CAAC,CAAC;QAEH,MAAM,iBAAiB,GAAG;YACxB,4BAA4B,EAC1B,MAAM,CAAC,4BAA4B,IAAI,KAAK;YAC9C,0BAA0B,EAAE,MAAM,CAAC,0BAA0B;YAC7D,iBAAiB,EAAE,MAAM,CAAC,mBAAmB;YAC7C,wBAAwB,EAAE,MAAM,CAAC,0BAA0B;YAC3D,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC;YAC3C,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;YAC/B,QAAQ,EAAE,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC;YAC/C,mBAAmB,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,IAAA,0BAAoB,GAAE,CAAC,CAAC,CAAC,CAAC,EAAE;YACzE,IAAI;YACJ,YAAY;YACZ,QAAQ,EAAE,IAAA,6CAA8B,EAAC,YAAY,CAAC;YACtD,WAAW;YACX,oBAAoB,EAClB,MAAM,CAAC,oBAAoB,KAAK,SAAS;gBACvC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,oBAAqB,CAAC;gBACtC,CAAC,CAAC,SAAS;YACf,WAAW,EAAE,MAAM,CAAC,WAAW;YAC/B,MAAM,EAAE;gBACN,QAAQ,EAAE,MAAM,CAAC,QAAQ;gBACzB,QAAQ,EAAE,IAAA,kDAAmC,EAAC,MAAM,CAAC,cAAc,CAAC;gBACpE,OAAO,EAAE;oBACP,KAAK,EAAE,IAAA,sDAAuC,EAAC,MAAM,CAAC,YAAY,CAAC;iBACpE;aACF;YACD,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC;YACnC,aAAa,EAAE,EAAE;YACjB,aAAa;SACd,CAAC;QAEF,MAAM,eAAe,GAAG;YACtB,MAAM,EAAE,YAAY,CAAC,OAAO;YAC5B,8BAA8B,EAAE,CAAC,MAAqB,EAAE,EAAE;gBACxD,OAAO,6BAAa,CAAC,cAAc,CACjC,MAAM,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE;oBACnB,OAAO,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBAC5B,CAAC,CAAC,CACH,CAAC;YACJ,CAAC;YACD,iBAAiB,EAAE,CAAC,OAAe,EAAE,OAAgB,EAAE,EAAE;gBACvD,IAAI,OAAO,EAAE;oBACX,iBAAiB,CAAC,OAAO,CAAC,CAAC;iBAC5B;qBAAM;oBACL,WAAW,CAAC,OAAO,CAAC,CAAC;iBACtB;YACH,CAAC;SACF,CAAC;QAEF,MAAM,qBAAqB,GAAG;YAC5B,oBAAoB,EAAE,CAAC,KAAwB,EAAE,EAAE;gBACjD,YAAY,CAAC,IAAI,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;YACvC,CAAC;SACF,CAAC;QAEF,MAAM,gBAAgB,GAAG,aAAa,IAAI,EAAE,CAAC;QAE7C,MAAM,eAAe,GAAG,qBAAe,CAAC,aAAa,CAAC,gBAAgB,CAAC,CAAC;QAExE,MAAM,OAAO,GAAG,MAAM,mBAAmB,EAAE,CAAC;QAC5C,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,cAAc,CAC3C,kBAAkB,EAClB,iBAAiB,EACjB,eAAe,EACf,qBAAqB,EACrB,eAAe,CAChB,CAAC;QAEF,MAAM,qBAAqB,GAAG;YAC5B,GAAG,EAAE,IAAA,mCAAsB,EAAC,QAAQ,CAAC;SACtC,CAAC;QAEF,MAAM,OAAO,GAAG,IAAI,kBAAkB,CACpC,QAAQ,EACR,iBAAiB,EACjB,eAAe,EACf,qBAAqB,EACrB,qBAAqB,CACtB,CAAC;QAEF,4CAA4C;QAC5C,YAAY,CAAC,WAAW,CACtB,UAAU,EACV,OAAO,CAAC,iBAAiB,CAAC,IAAI,CAAC,OAAO,CAAC,CACxC,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAEM,KAAK,CAAC,OAAO,CAAC,IAAsB;QACzC,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE;YAC5D,MAAM,IAAI,0BAAiB,CACzB,mEAAmE,CACpE,CAAC;SACH;QAED,MAAM,MAAM,GAAG,IAAI,CAAC,MAAM,IAAI,EAAE,CAAC;QAEjC,sCAAsC;QACtC,QAAQ,IAAI,CAAC,MAAM,EAAE;YACnB,KAAK,oCAAoC;gBACvC,OAAO,CAAC,CAAC;YACX,KAAK,YAAY;gBACf,OAAO,KAAK,CAAC;YACf,KAAK,eAAe;gBAClB,OAAO,IAAI,CAAC;YACd,KAAK,eAAe;gBAClB,OAAO,IAAA,gCAAmB,EAAC,CAAC,CAAC,CAAC;YAChC,KAAK,eAAe;gBAClB,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,YAAY,CAAC,MAAM,CAAC,CAAC,CAAC;YAC9C,KAAK,8BAA8B;gBACjC,OAAO,IAAI,CAAC,qBAAqB,CAC/B,GAAG,2BAA2B,CAAC,MAAM,CAAC,CACvC,CAAC;SACL;QAED,MAAM,eAAe,GAAG,IAAI,CAAC,SAAS,CAAC;YACrC,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,MAAM;SACP,CAAC,CAAC;QAEH,MAAM,cAAc,GAAa,MAAM,IAAI,CAAC,SAAS,CAAC,aAAa,CACjE,eAAe,CAChB,CAAC;QAEF,IAAI,QAAQ,CAAC;QACb,IAAI,OAAO,cAAc,CAAC,IAAI,KAAK,QAAQ,EAAE;YAC3C,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;SAC5C;aAAM;YACL,QAAQ,GAAG,cAAc,CAAC,IAAI,CAAC;SAChC;QAED,MAAM,WAAW,GACf,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,MAAM,GAAG,CAAC;YACjD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC;QAEhD,IAAI,WAAW,EAAE;YACf,MAAM,SAAS,GAAG,cAAc,CAAC,MAAM,CAAC;YACxC,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE;gBAChC,0EAA0E;gBAC1E,MAAM,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;gBAE7B,iBAAiB;gBACjB,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;oBACvD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;iBACxC;gBAED,KAAK,MAAM,SAAS,IAAI,KAAK,EAAE;oBAC7B,aAAa;oBACb,IAAI,IAAI,IAAI,SAAS,EAAE;wBACrB,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;4BACvD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAC5B,MAAM,EACN,IAAA,qDAAsC,EAAC,SAAS,CAAC,CAClD,CAAC;yBACH;qBACF;oBACD,qBAAqB;yBAChB,IAAI,iBAAiB,IAAI,SAAS,EAAE;wBACvC,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,cAAc,CAAC,GAAG,CAAC,EAAE;4BAC/D,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAC5B,cAAc,EACd,IAAA,wDAAyC,EAAC,SAAS,CAAC,CACrD,CAAC;yBACH;qBACF;oBACD,sBAAsB;yBACjB;wBACH,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,eAAe,CAAC,GAAG,CAAC,EAAE;4BAChE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAC5B,eAAe,EACf,IAAA,gDAAiC,EAAC,SAAS,CAAC,CAC7C,CAAC;yBACH;qBACF;iBACF;gBAED,gBAAgB;gBAChB,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE;oBACtD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;iBACvC;aACF;SACF;QAED,IAAI,IAAA,sBAAe,EAAC,QAAQ,CAAC,EAAE;YAC7B,IAAI,KAAK,CAAC;YAEV,IAAI,UAAU,GAA8B,IAAI,CAAC;YACjD,IAAI;gBACF,UAAU,GAAG,cAAc,CAAC,UAAU,EAAE,CAAC;aAC1C;YAAC,OAAO,CAAC,EAAE;gBACV,GAAG,CAAC,+BAA+B,EAAE,CAAC,CAAC,CAAC;aACzC;YAED,IAAI,UAAU,KAAK,IAAI,EAAE;gBACvB,KAAK,GAAG,IAAA,0CAAwB,EAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC;gBACrE,yDAAyD;gBACxD,KAAa,CAAC,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,IAAI,SAAS,CAAC;gBAC5D,KAAa,CAAC,eAAe;oBAC5B,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,eAAe,IAAI,SAAS,CAAC;aACrD;iBAAM;gBACL,IAAI,QAAQ,CAAC,KAAK,CAAC,IAAI,KAAK,8BAAqB,CAAC,IAAI,EAAE;oBACtD,KAAK,GAAG,IAAI,8BAAqB,CAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;iBAC3D;qBAAM;oBACL,KAAK,GAAG,IAAI,sBAAa,CACvB,QAAQ,CAAC,KAAK,CAAC,OAAO,EACtB,QAAQ,CAAC,KAAK,CAAC,IAAI,CACpB,CAAC;iBACH;gBACD,KAAK,CAAC,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC;aAClC;YAED,sFAAsF;YACtF,MAAM,KAAK,CAAC;SACb;QAED,IAAI,IAAI,CAAC,MAAM,KAAK,YAAY,EAAE;YAChC,IAAI,CAAC,IAAI,CAAC,iDAAqC,CAAC,CAAC;SAClD;QAED,4EAA4E;QAC5E,8DAA8D;QAC9D,IAAI,IAAI,CAAC,MAAM,KAAK,oBAAoB,EAAE;YACxC,OAAO,aAAa,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;SACvC;aAAM,IACL,IAAI,CAAC,MAAM,KAAK,wBAAwB;YACxC,IAAI,CAAC,MAAM,KAAK,iBAAiB,EACjC;YACA,OAAO,IAAA,wCAAyB,EAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;SACnD;aAAM;YACL,OAAO,QAAQ,CAAC,MAAM,CAAC;SACxB;IACH,CAAC;IAEO,KAAK,CAAC,qBAAqB,CACjC,WAAmB,EACnB,KAAoB,EACpB,MAAsB;QAEtB,IAAI;YACF,MAAM,IAAI,CAAC,SAAS,CAAC,oBAAoB,CAAC,WAAW,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;YAEtE,OAAO,IAAI,CAAC;SACb;QAAC,OAAO,KAAU,EAAE;YACnB,sFAAsF;YACtF,MAAM,IAAI,sBAAa,CAAC,KAAK,CAAC,CAAC;SAChC;IACH,CAAC;IAEO,KAAK,CAAC,MAAM,CAAC,aAAuC;QAC1D,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAA,6BAAmB,EAChD,sBAAsB,CACkB,CAAC;QAC3C,MAAM,UAAU,GAAG,aAAa,EAAE,OAAO,CAAC;QAE1C,IAAI,UAAU,KAAK,SAAS,EAAE;YAC5B,IAAI,CAAC,eAAe,CAAC,IAAI,GAAG;gBAC1B,WAAW,EACT,UAAU,CAAC,WAAW,KAAK,SAAS;oBAClC,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC;oBAChC,CAAC,CAAC,SAAS;gBACf,QAAQ,EAAE,IAAI,CAAC,eAAe,CAAC,IAAI,EAAE,QAAQ;gBAC7C,cAAc,EAAE,IAAI,CAAC,eAAe,CAAC,IAAI,EAAE,cAAc;gBACzD,WAAW,EAAE,IAAA,+BAAgB,EAAC,UAAU,CAAC,WAAW,CAAC;gBACrD,GAAG,EAAE,UAAU,CAAC,UAAU;aAC3B,CAAC;SACH;aAAM;YACL,IAAI,CAAC,eAAe,CAAC,IAAI,GAAG,SAAS,CAAC;SACvC;QAED,MAAM,OAAO,GAAG,MAAM,mBAAmB,EAAE,CAAC;QAC5C,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,cAAc,CAC3C,kBAAkB,EAClB,IAAI,CAAC,eAAe,EACpB,IAAI,CAAC,aAAa,EAClB,IAAI,CAAC,mBAAmB,EACxB,IAAI,CAAC,SAAS,CAAC,eAAe,EAAE,CACjC,CAAC;QAEF,MAAM,qBAAqB,GAAG;YAC5B,GAAG,EAAE,IAAA,mCAAsB,EAAC,QAAQ,CAAC;SACtC,CAAC;QAEF,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;QAC1B,IAAI,CAAC,KAAK,GAAG,qBAAqB,CAAC;QAEnC,IAAI,CAAC,IAAI,CAAC,uCAA2B,CAAC,CAAC;QAEvC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,mDAAmD;IAC3C,KAAK,CAAC,wBAAwB,CACpC,QAA8B;QAE9B,IAAI,CAAC,qBAAqB,GAAG,QAAQ,CAAC;QAEtC,MAAM,IAAI,CAAC,SAAS,CAAC,uBAAuB,CAC1C,KAAK,EAAE,OAAoB,EAAE,IAAiB,EAAE,EAAE;YAChD,OAAO,IAAI,CAAC,qBAAqB,EAAE,CACjC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,EACpB,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAClB,CAAC;QACJ,CAAC,CACF,CAAC;IACJ,CAAC;IAEO,KAAK,CAAC,kBAAkB,CAAC,OAAgB;QAC/C,MAAM,IAAI,CAAC,SAAS,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC;IAClD,CAAC;IAEO,iBAAiB,CAAC,KAAwB;QAChD,MAAM,YAAY,GAAG,KAAK,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE,CAAC;QACxD,MAAM,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAC5E,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE;YAC5B,IAAI,CAAC,4BAA4B,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;YACxD,IAAI,CAAC,6BAA6B,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;SAC1D;IACH,CAAC;IAEO,4BAA4B,CAAC,YAAoB,EAAE,MAAW;QACpE,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE;YACxB,YAAY;YACZ,MAAM;SACP,CAAC,CAAC;IACL,CAAC;IAEO,6BAA6B,CAAC,YAAoB,EAAE,MAAe;QACzE,MAAM,OAAO,GAAoB;YAC/B,IAAI,EAAE,kBAAkB;YACxB,IAAI,EAAE;gBACJ,YAAY;gBACZ,MAAM;aACP;SACF,CAAC;QAEF,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IAChC,CAAC;CACF;AAxbD,gDAwbC;AAED,KAAK,UAAU,aAAa,CAAC,gBAAwB;IACnD,MAAM,cAAc,GAAG,MAAM,IAAA,4BAAc,GAAE,CAAC;IAC9C,MAAM,UAAU,GAAG,gBAAgB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAClD,OAAO,kBAAkB,cAAc,CAAC,OAAO,yBAAyB,UAAU,EAAE,CAAC;AACvF,CAAC;AAEM,KAAK,UAAU,4BAA4B,CAChD,4BAA0D,EAC1D,YAA0B,EAC1B,SAAqB;IAErB,GAAG,CAAC,uBAAuB,CAAC,CAAC;IAC7B,MAAM,aAAa,GAAG,MAAM,iBAAiB,CAAC,SAAS,CAAC,CAAC;IACzD,GAAG,CAAC,uBAAuB,CAAC,CAAC;IAC7B,MAAM,QAAQ,GAAG,MAAM,kBAAkB,CAAC,MAAM,CAC9C,4BAA4B,EAC5B,YAAY,EACZ,aAAa,CACd,CAAC;IACF,GAAG,CAAC,sBAAsB,CAAC,CAAC;IAE5B,OAAO,QAAQ,CAAC;AAClB,CAAC;AAhBD,oEAgBC;AAED,KAAK,UAAU,iBAAiB,CAC9B,SAAgC;IAEhC,IAAI,SAAS,KAAK,SAAS,EAAE;QAC3B,MAAM,cAAc,GAAG,MAAM,SAAS,CAAC,iBAAiB,EAAE,CAAC;QAE3D,IAAI;YACF,MAAM,UAAU,GAAG,MAAM,OAAO,CAAC,GAAG,CAClC,cAAc,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,kBAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAC7D,CAAC;YAEF,OAAO;gBACL,UAAU;aACX,CAAC;SACH;QAAC,OAAO,KAAK,EAAE;YACd,OAAO,CAAC,IAAI,CACV,oBAAU,CAAC,MAAM,CACf,yFAAyF,CAC1F,CACF,CAAC;YAEF,GAAG,CACD,gIAAgI,EAChI,KAAK,CACN,CAAC;SACH;KACF;AACH,CAAC;AAED,SAAS,2BAA2B,CAClC,MAAa;IAEb,OAAO,IAAA,2BAAc,EAAC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,uBAAgB,EAAE,wBAAiB,CAAC,CAAC;AAC/E,CAAC;AAED,SAAS,YAAY,CAAC,MAAa;IACjC,OAAO,IAAA,2BAAc,EAAC,MAAM,EAAE,iDAA+B,CAAC,CAAC;AACjE,CAAC"} -\ No newline at end of file -diff --git a/internal/hardhat-network/provider/utils/convertToEdr.d.ts b/internal/hardhat-network/provider/utils/convertToEdr.d.ts -index 3f88a622b92abfd911f4b79f5160758ee81a0f2a..69eebf11f2d8a5847ea74db738007391dde986b7 100644 ---- a/internal/hardhat-network/provider/utils/convertToEdr.d.ts -+++ b/internal/hardhat-network/provider/utils/convertToEdr.d.ts -@@ -1,9 +1,9 @@ --import type { SpecId, MineOrdering, IntervalRange, DebugTraceResult, TracingMessage, TracingMessageResult, TracingStep } from "@nomicfoundation/edr"; -+import type { SpecId, MineOrdering, IntervalRange, DebugTraceResult, TracingMessage, TracingMessageResult, TracingStep, HttpHeader } from "@nomicfoundation/edr"; - import { HardforkName } from "../../../util/hardforks"; - import { IntervalMiningConfig, MempoolOrder } from "../node-types"; - import { RpcDebugTraceOutput } from "../output"; - import { MinimalEVMResult, MinimalInterpreterStep, MinimalMessage } from "../vm/types"; --export declare function ethereumsjsHardforkToEdrSpecId(hardfork: HardforkName): SpecId; -+export declare function ethereumsjsHardforkToEdrSpecId(hardfork: HardforkName): string; - export declare function edrSpecIdToEthereumHardfork(specId: SpecId): HardforkName; - export declare function ethereumjsIntervalMiningConfigToEdr(config: IntervalMiningConfig): bigint | IntervalRange | undefined; - export declare function ethereumjsMempoolOrderToEdrMineOrdering(mempoolOrder: MempoolOrder): MineOrdering; -@@ -11,4 +11,7 @@ export declare function edrRpcDebugTraceToHardhat(rpcDebugTrace: DebugTraceResul - export declare function edrTracingStepToMinimalInterpreterStep(step: TracingStep): MinimalInterpreterStep; - export declare function edrTracingMessageResultToMinimalEVMResult(tracingMessageResult: TracingMessageResult): MinimalEVMResult; - export declare function edrTracingMessageToMinimalMessage(message: TracingMessage): MinimalMessage; -+export declare function httpHeadersToEdr(input?: { -+ [name: string]: string; -+}): HttpHeader[] | undefined; - //# sourceMappingURL=convertToEdr.d.ts.map -\ No newline at end of file -diff --git a/internal/hardhat-network/provider/utils/convertToEdr.d.ts.map b/internal/hardhat-network/provider/utils/convertToEdr.d.ts.map -index 003582451a11ccabd20730fee5fc58f8d6dec152..2ea9da2daea470b126f3c473d444e1d31a407eee 100644 ---- a/internal/hardhat-network/provider/utils/convertToEdr.d.ts.map -+++ b/internal/hardhat-network/provider/utils/convertToEdr.d.ts.map -@@ -1 +1 @@ --{"version":3,"file":"convertToEdr.d.ts","sourceRoot":"","sources":["../../../../src/internal/hardhat-network/provider/utils/convertToEdr.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EACN,YAAY,EACZ,aAAa,EACb,gBAAgB,EAChB,cAAc,EACd,oBAAoB,EACpB,WAAW,EACZ,MAAM,sBAAsB,CAAC;AAI9B,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAE,oBAAoB,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAgB,MAAM,WAAW,CAAC;AAC9D,OAAO,EACL,gBAAgB,EAChB,sBAAsB,EACtB,cAAc,EACf,MAAM,aAAa,CAAC;AAIrB,wBAAgB,8BAA8B,CAAC,QAAQ,EAAE,YAAY,GAAG,MAAM,CAgD7E;AAED,wBAAgB,2BAA2B,CAAC,MAAM,EAAE,MAAM,GAAG,YAAY,CA8CxE;AAED,wBAAgB,mCAAmC,CACjD,MAAM,EAAE,oBAAoB,GAC3B,MAAM,GAAG,aAAa,GAAG,SAAS,CAcpC;AAED,wBAAgB,uCAAuC,CACrD,YAAY,EAAE,YAAY,GACzB,YAAY,CAWd;AAED,wBAAgB,yBAAyB,CACvC,aAAa,EAAE,gBAAgB,GAC9B,mBAAmB,CAoDrB;AAED,wBAAgB,sCAAsC,CACpD,IAAI,EAAE,WAAW,GAChB,sBAAsB,CAexB;AAED,wBAAgB,yCAAyC,CACvD,oBAAoB,EAAE,oBAAoB,GACzC,gBAAgB,CA+BlB;AAED,wBAAgB,iCAAiC,CAC/C,OAAO,EAAE,cAAc,GACtB,cAAc,CAahB"} -\ No newline at end of file -+{"version":3,"file":"convertToEdr.d.ts","sourceRoot":"","sources":["../../../../src/internal/hardhat-network/provider/utils/convertToEdr.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EACN,YAAY,EACZ,aAAa,EACb,gBAAgB,EAChB,cAAc,EACd,oBAAoB,EACpB,WAAW,EACX,UAAU,EACX,MAAM,sBAAsB,CAAC;AAwB9B,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAE,oBAAoB,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAgB,MAAM,WAAW,CAAC;AAC9D,OAAO,EACL,gBAAgB,EAChB,sBAAsB,EACtB,cAAc,EACf,MAAM,aAAa,CAAC;AAIrB,wBAAgB,8BAA8B,CAAC,QAAQ,EAAE,YAAY,GAAG,MAAM,CA4C7E;AAED,wBAAgB,2BAA2B,CAAC,MAAM,EAAE,MAAM,GAAG,YAAY,CA8CxE;AAED,wBAAgB,mCAAmC,CACjD,MAAM,EAAE,oBAAoB,GAC3B,MAAM,GAAG,aAAa,GAAG,SAAS,CAcpC;AAED,wBAAgB,uCAAuC,CACrD,YAAY,EAAE,YAAY,GACzB,YAAY,CAWd;AAED,wBAAgB,yBAAyB,CACvC,aAAa,EAAE,gBAAgB,GAC9B,mBAAmB,CAoDrB;AAED,wBAAgB,sCAAsC,CACpD,IAAI,EAAE,WAAW,GAChB,sBAAsB,CAexB;AAED,wBAAgB,yCAAyC,CACvD,oBAAoB,EAAE,oBAAoB,GACzC,gBAAgB,CA+BlB;AAED,wBAAgB,iCAAiC,CAC/C,OAAO,EAAE,cAAc,GACtB,cAAc,CAahB;AAED,wBAAgB,gBAAgB,CAAC,KAAK,CAAC,EAAE;IACvC,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB,GAAG,UAAU,EAAE,GAAG,SAAS,CAc3B"} -\ No newline at end of file -diff --git a/internal/hardhat-network/provider/utils/convertToEdr.js b/internal/hardhat-network/provider/utils/convertToEdr.js -index e42c0e53211c9f5d418d256f5b8e51c277d35072..da0b1800d4c3a8d3bc678ed5abcae161ad8fe7d5 100644 ---- a/internal/hardhat-network/provider/utils/convertToEdr.js -+++ b/internal/hardhat-network/provider/utils/convertToEdr.js -@@ -1,49 +1,49 @@ - "use strict"; - Object.defineProperty(exports, "__esModule", { value: true }); --exports.edrTracingMessageToMinimalMessage = exports.edrTracingMessageResultToMinimalEVMResult = exports.edrTracingStepToMinimalInterpreterStep = exports.edrRpcDebugTraceToHardhat = exports.ethereumjsMempoolOrderToEdrMineOrdering = exports.ethereumjsIntervalMiningConfigToEdr = exports.edrSpecIdToEthereumHardfork = exports.ethereumsjsHardforkToEdrSpecId = void 0; -+exports.httpHeadersToEdr = exports.edrTracingMessageToMinimalMessage = exports.edrTracingMessageResultToMinimalEVMResult = exports.edrTracingStepToMinimalInterpreterStep = exports.edrRpcDebugTraceToHardhat = exports.ethereumjsMempoolOrderToEdrMineOrdering = exports.ethereumjsIntervalMiningConfigToEdr = exports.edrSpecIdToEthereumHardfork = exports.ethereumsjsHardforkToEdrSpecId = void 0; -+const edr_1 = require("@nomicfoundation/edr"); - const util_1 = require("@ethereumjs/util"); - const napi_rs_1 = require("../../../../common/napi-rs"); - const hardforks_1 = require("../../../util/hardforks"); - /* eslint-disable @nomicfoundation/hardhat-internal-rules/only-hardhat-error */ - function ethereumsjsHardforkToEdrSpecId(hardfork) { -- const { SpecId } = (0, napi_rs_1.requireNapiRsModule)("@nomicfoundation/edr"); - switch (hardfork) { - case hardforks_1.HardforkName.FRONTIER: -- return SpecId.Frontier; -+ return edr_1.FRONTIER; - case hardforks_1.HardforkName.HOMESTEAD: -- return SpecId.Homestead; -+ return edr_1.HOMESTEAD; - case hardforks_1.HardforkName.DAO: -- return SpecId.DaoFork; -+ return edr_1.DAO_FORK; - case hardforks_1.HardforkName.TANGERINE_WHISTLE: -- return SpecId.Tangerine; -+ return edr_1.TANGERINE; - case hardforks_1.HardforkName.SPURIOUS_DRAGON: -- return SpecId.SpuriousDragon; -+ return edr_1.SPURIOUS_DRAGON; - case hardforks_1.HardforkName.BYZANTIUM: -- return SpecId.Byzantium; -+ return edr_1.BYZANTIUM; - case hardforks_1.HardforkName.CONSTANTINOPLE: -- return SpecId.Constantinople; -+ return edr_1.CONSTANTINOPLE; - case hardforks_1.HardforkName.PETERSBURG: -- return SpecId.Petersburg; -+ return edr_1.PETERSBURG; - case hardforks_1.HardforkName.ISTANBUL: -- return SpecId.Istanbul; -+ return edr_1.ISTANBUL; - case hardforks_1.HardforkName.MUIR_GLACIER: -- return SpecId.MuirGlacier; -+ return edr_1.MUIR_GLACIER; - case hardforks_1.HardforkName.BERLIN: -- return SpecId.Berlin; -+ return edr_1.BERLIN; - case hardforks_1.HardforkName.LONDON: -- return SpecId.London; -+ return edr_1.LONDON; - case hardforks_1.HardforkName.ARROW_GLACIER: -- return SpecId.ArrowGlacier; -+ return edr_1.ARROW_GLACIER; - case hardforks_1.HardforkName.GRAY_GLACIER: -- return SpecId.GrayGlacier; -+ return edr_1.GRAY_GLACIER; - case hardforks_1.HardforkName.MERGE: -- return SpecId.Merge; -+ return edr_1.MERGE; - case hardforks_1.HardforkName.SHANGHAI: -- return SpecId.Shanghai; -+ return edr_1.SHANGHAI; - case hardforks_1.HardforkName.CANCUN: -- return SpecId.Cancun; -+ return edr_1.CANCUN; - case hardforks_1.HardforkName.PRAGUE: -- return SpecId.Prague; -+ return edr_1.PRAGUE; - default: - const _exhaustiveCheck = hardfork; - throw new Error(`Unknown hardfork name '${hardfork}', this shouldn't happen`); -@@ -154,7 +154,7 @@ function edrRpcDebugTraceToHardhat(rpcDebugTrace) { - if (structLogs.length > 0 && structLogs[0].op === "STOP") { - structLogs.shift(); - } -- let returnValue = rpcDebugTrace.output?.toString("hex") ?? ""; -+ let returnValue = rpcDebugTrace.output?.toString() ?? ""; - if (returnValue === "0x") { - returnValue = ""; - } -@@ -197,11 +197,11 @@ function edrTracingMessageResultToMinimalEVMResult(tracingMessageResult) { - } - if ("output" in result) { - const { output } = result; -- if (Buffer.isBuffer(output)) { -- minimalEVMResult.execResult.output = output; -+ if (output instanceof Uint8Array) { -+ minimalEVMResult.execResult.output = Buffer.from(output); - } - else { -- minimalEVMResult.execResult.output = output.returnValue; -+ minimalEVMResult.execResult.output = Buffer.from(output.returnValue); - } - } - if (contractAddress !== undefined) { -@@ -224,4 +224,18 @@ function edrTracingMessageToMinimalMessage(message) { - }; - } - exports.edrTracingMessageToMinimalMessage = edrTracingMessageToMinimalMessage; -+function httpHeadersToEdr(input) { -+ let httpHeaders; -+ if (input !== undefined) { -+ httpHeaders = []; -+ for (const [name, value] of Object.entries(input)) { -+ httpHeaders.push({ -+ name, -+ value, -+ }); -+ } -+ } -+ return httpHeaders; -+} -+exports.httpHeadersToEdr = httpHeadersToEdr; - //# sourceMappingURL=convertToEdr.js.map -\ No newline at end of file -diff --git a/internal/hardhat-network/provider/utils/convertToEdr.js.map b/internal/hardhat-network/provider/utils/convertToEdr.js.map -index 79918d51fa738b6c10b351a82bde636c38706b81..c57ddfde2dc4e698aefbecd3a189ddeac4a8291e 100644 ---- a/internal/hardhat-network/provider/utils/convertToEdr.js.map -+++ b/internal/hardhat-network/provider/utils/convertToEdr.js.map -@@ -1 +1 @@ --{"version":3,"file":"convertToEdr.js","sourceRoot":"","sources":["../../../../src/internal/hardhat-network/provider/utils/convertToEdr.ts"],"names":[],"mappings":";;;AASA,2CAA2C;AAE3C,wDAAiE;AACjE,uDAAuD;AASvD,+EAA+E;AAE/E,SAAgB,8BAA8B,CAAC,QAAsB;IACnE,MAAM,EAAE,MAAM,EAAE,GAAG,IAAA,6BAAmB,EACpC,sBAAsB,CACkB,CAAC;IAE3C,QAAQ,QAAQ,EAAE;QAChB,KAAK,wBAAY,CAAC,QAAQ;YACxB,OAAO,MAAM,CAAC,QAAQ,CAAC;QACzB,KAAK,wBAAY,CAAC,SAAS;YACzB,OAAO,MAAM,CAAC,SAAS,CAAC;QAC1B,KAAK,wBAAY,CAAC,GAAG;YACnB,OAAO,MAAM,CAAC,OAAO,CAAC;QACxB,KAAK,wBAAY,CAAC,iBAAiB;YACjC,OAAO,MAAM,CAAC,SAAS,CAAC;QAC1B,KAAK,wBAAY,CAAC,eAAe;YAC/B,OAAO,MAAM,CAAC,cAAc,CAAC;QAC/B,KAAK,wBAAY,CAAC,SAAS;YACzB,OAAO,MAAM,CAAC,SAAS,CAAC;QAC1B,KAAK,wBAAY,CAAC,cAAc;YAC9B,OAAO,MAAM,CAAC,cAAc,CAAC;QAC/B,KAAK,wBAAY,CAAC,UAAU;YAC1B,OAAO,MAAM,CAAC,UAAU,CAAC;QAC3B,KAAK,wBAAY,CAAC,QAAQ;YACxB,OAAO,MAAM,CAAC,QAAQ,CAAC;QACzB,KAAK,wBAAY,CAAC,YAAY;YAC5B,OAAO,MAAM,CAAC,WAAW,CAAC;QAC5B,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,MAAM,CAAC,MAAM,CAAC;QACvB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,MAAM,CAAC,MAAM,CAAC;QACvB,KAAK,wBAAY,CAAC,aAAa;YAC7B,OAAO,MAAM,CAAC,YAAY,CAAC;QAC7B,KAAK,wBAAY,CAAC,YAAY;YAC5B,OAAO,MAAM,CAAC,WAAW,CAAC;QAC5B,KAAK,wBAAY,CAAC,KAAK;YACrB,OAAO,MAAM,CAAC,KAAK,CAAC;QACtB,KAAK,wBAAY,CAAC,QAAQ;YACxB,OAAO,MAAM,CAAC,QAAQ,CAAC;QACzB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,MAAM,CAAC,MAAM,CAAC;QACvB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,MAAM,CAAC,MAAM,CAAC;QACvB;YACE,MAAM,gBAAgB,GAAU,QAAQ,CAAC;YACzC,MAAM,IAAI,KAAK,CACb,0BAA0B,QAAkB,0BAA0B,CACvE,CAAC;KACL;AACH,CAAC;AAhDD,wEAgDC;AAED,SAAgB,2BAA2B,CAAC,MAAc;IACxD,MAAM,EAAE,MAAM,EAAE,GAAG,IAAA,6BAAmB,EACpC,sBAAsB,CACkB,CAAC;IAE3C,QAAQ,MAAM,EAAE;QACd,KAAK,MAAM,CAAC,QAAQ;YAClB,OAAO,wBAAY,CAAC,QAAQ,CAAC;QAC/B,KAAK,MAAM,CAAC,SAAS;YACnB,OAAO,wBAAY,CAAC,SAAS,CAAC;QAChC,KAAK,MAAM,CAAC,OAAO;YACjB,OAAO,wBAAY,CAAC,GAAG,CAAC;QAC1B,KAAK,MAAM,CAAC,SAAS;YACnB,OAAO,wBAAY,CAAC,iBAAiB,CAAC;QACxC,KAAK,MAAM,CAAC,cAAc;YACxB,OAAO,wBAAY,CAAC,eAAe,CAAC;QACtC,KAAK,MAAM,CAAC,SAAS;YACnB,OAAO,wBAAY,CAAC,SAAS,CAAC;QAChC,KAAK,MAAM,CAAC,cAAc;YACxB,OAAO,wBAAY,CAAC,cAAc,CAAC;QACrC,KAAK,MAAM,CAAC,UAAU;YACpB,OAAO,wBAAY,CAAC,UAAU,CAAC;QACjC,KAAK,MAAM,CAAC,QAAQ;YAClB,OAAO,wBAAY,CAAC,QAAQ,CAAC;QAC/B,KAAK,MAAM,CAAC,WAAW;YACrB,OAAO,wBAAY,CAAC,YAAY,CAAC;QACnC,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,YAAY;YACtB,OAAO,wBAAY,CAAC,aAAa,CAAC;QACpC,KAAK,MAAM,CAAC,WAAW;YACrB,OAAO,wBAAY,CAAC,YAAY,CAAC;QACnC,KAAK,MAAM,CAAC,KAAK;YACf,OAAO,wBAAY,CAAC,KAAK,CAAC;QAC5B,KAAK,MAAM,CAAC,QAAQ;YAClB,OAAO,wBAAY,CAAC,QAAQ,CAAC;QAC/B,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAE7B;YACE,MAAM,IAAI,KAAK,CAAC,oBAAoB,MAAM,0BAA0B,CAAC,CAAC;KACzE;AACH,CAAC;AA9CD,kEA8CC;AAED,SAAgB,mCAAmC,CACjD,MAA4B;IAE5B,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;QAC9B,+BAA+B;QAC/B,IAAI,MAAM,KAAK,CAAC,EAAE;YAChB,OAAO,SAAS,CAAC;SAClB;aAAM;YACL,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC;SACvB;KACF;SAAM;QACL,OAAO;YACL,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YACtB,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;SACvB,CAAC;KACH;AACH,CAAC;AAhBD,kFAgBC;AAED,SAAgB,uCAAuC,CACrD,YAA0B;IAE1B,MAAM,EAAE,YAAY,EAAE,GAAG,IAAA,6BAAmB,EAC1C,sBAAsB,CACkB,CAAC;IAE3C,QAAQ,YAAY,EAAE;QACpB,KAAK,MAAM;YACT,OAAO,YAAY,CAAC,IAAI,CAAC;QAC3B,KAAK,UAAU;YACb,OAAO,YAAY,CAAC,QAAQ,CAAC;KAChC;AACH,CAAC;AAbD,0FAaC;AAED,SAAgB,yBAAyB,CACvC,aAA+B;IAE/B,MAAM,UAAU,GAAG,aAAa,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE;QACtD,MAAM,MAAM,GAAiB;YAC3B,KAAK,EAAE,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC;YACxB,GAAG,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;YACpB,OAAO,EAAE,MAAM,CAAC,GAAG,CAAC,OAAO,CAAC;YAC5B,EAAE,EAAE,GAAG,CAAC,MAAM;YACd,EAAE,EAAE,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC;SACnB,CAAC;QAEF,IAAI,GAAG,CAAC,MAAM,KAAK,SAAS,EAAE;YAC5B,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;SAC5B;QAED,IAAI,GAAG,CAAC,KAAK,KAAK,SAAS,EAAE;YAC3B,+EAA+E;YAC/E,MAAM,CAAC,KAAK,GAAG,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;SACxD;QAED,IAAI,GAAG,CAAC,OAAO,KAAK,SAAS,EAAE;YAC7B,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC,WAAW,CACjC,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,EAAE;gBAC/C,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;YACxC,CAAC,CAAC,CACH,CAAC;SACH;QAED,IAAI,GAAG,CAAC,KAAK,KAAK,SAAS,EAAE;YAC3B,MAAM,CAAC,KAAK,GAAG;gBACb,OAAO,EAAE,GAAG,CAAC,KAAK;aACnB,CAAC;SACH;QAED,OAAO,MAAM,CAAC;IAChB,CAAC,CAAC,CAAC;IAEH,2DAA2D;IAC3D,IAAI,UAAU,CAAC,MAAM,GAAG,CAAC,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,MAAM,EAAE;QACxD,UAAU,CAAC,KAAK,EAAE,CAAC;KACpB;IAED,IAAI,WAAW,GAAG,aAAa,CAAC,MAAM,EAAE,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC;IAC9D,IAAI,WAAW,KAAK,IAAI,EAAE;QACxB,WAAW,GAAG,EAAE,CAAC;KAClB;IAED,OAAO;QACL,MAAM,EAAE,CAAC,aAAa,CAAC,IAAI;QAC3B,GAAG,EAAE,MAAM,CAAC,aAAa,CAAC,OAAO,CAAC;QAClC,WAAW;QACX,UAAU;KACX,CAAC;AACJ,CAAC;AAtDD,8DAsDC;AAED,SAAgB,sCAAsC,CACpD,IAAiB;IAEjB,MAAM,sBAAsB,GAA2B;QACrD,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;QACnB,KAAK,EAAE,IAAI,CAAC,KAAK;QACjB,MAAM,EAAE;YACN,IAAI,EAAE,IAAI,CAAC,MAAM;SAClB;QACD,KAAK,EAAE,IAAI,CAAC,KAAK;KAClB,CAAC;IAEF,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,EAAE;QAC7B,sBAAsB,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;KAC7C;IAED,OAAO,sBAAsB,CAAC;AAChC,CAAC;AAjBD,wFAiBC;AAED,SAAgB,yCAAyC,CACvD,oBAA0C;IAE1C,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,GAAG,oBAAoB,CAAC,eAAe,CAAC;IAEzE,8BAA8B;IAC9B,MAAM,OAAO,GAAG,MAAM,IAAI,MAAM,CAAC;IAEjC,MAAM,gBAAgB,GAAqB;QACzC,UAAU,EAAE;YACV,gBAAgB,EAAE,MAAM,CAAC,OAAO;YAChC,OAAO;SACR;KACF,CAAC;IAEF,gDAAgD;IAChD,IAAI,QAAQ,IAAI,MAAM,EAAE;QACtB,gBAAgB,CAAC,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;KACpD;IACD,IAAI,QAAQ,IAAI,MAAM,EAAE;QACtB,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC;QAC1B,IAAI,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;YAC3B,gBAAgB,CAAC,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC;SAC7C;aAAM;YACL,gBAAgB,CAAC,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,WAAW,CAAC;SACzD;KACF;IAED,IAAI,eAAe,KAAK,SAAS,EAAE;QACjC,gBAAgB,CAAC,UAAU,CAAC,eAAe,GAAG,IAAI,cAAO,CAAC,eAAe,CAAC,CAAC;KAC5E;IAED,OAAO,gBAAgB,CAAC;AAC1B,CAAC;AAjCD,8FAiCC;AAED,SAAgB,iCAAiC,CAC/C,OAAuB;IAEvB,OAAO;QACL,EAAE,EAAE,OAAO,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,cAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS;QAClE,WAAW,EACT,OAAO,CAAC,WAAW,KAAK,SAAS;YAC/B,CAAC,CAAC,IAAI,cAAO,CAAC,OAAO,CAAC,WAAW,CAAC;YAClC,CAAC,CAAC,SAAS;QACf,IAAI,EAAE,OAAO,CAAC,IAAI;QAClB,KAAK,EAAE,OAAO,CAAC,KAAK;QACpB,MAAM,EAAE,IAAI,cAAO,CAAC,OAAO,CAAC,MAAM,CAAC;QACnC,QAAQ,EAAE,OAAO,CAAC,QAAQ;QAC1B,YAAY,EAAE,OAAO,CAAC,YAAY;KACnC,CAAC;AACJ,CAAC;AAfD,8EAeC"} -\ No newline at end of file -+{"version":3,"file":"convertToEdr.js","sourceRoot":"","sources":["../../../../src/internal/hardhat-network/provider/utils/convertToEdr.ts"],"names":[],"mappings":";;;AAUA,8CAmB8B;AAC9B,2CAA2C;AAE3C,wDAAiE;AACjE,uDAAuD;AASvD,+EAA+E;AAE/E,SAAgB,8BAA8B,CAAC,QAAsB;IACnE,QAAQ,QAAQ,EAAE;QAChB,KAAK,wBAAY,CAAC,QAAQ;YACxB,OAAO,cAAQ,CAAC;QAClB,KAAK,wBAAY,CAAC,SAAS;YACzB,OAAO,eAAS,CAAC;QACnB,KAAK,wBAAY,CAAC,GAAG;YACnB,OAAO,cAAQ,CAAC;QAClB,KAAK,wBAAY,CAAC,iBAAiB;YACjC,OAAO,eAAS,CAAC;QACnB,KAAK,wBAAY,CAAC,eAAe;YAC/B,OAAO,qBAAe,CAAC;QACzB,KAAK,wBAAY,CAAC,SAAS;YACzB,OAAO,eAAS,CAAC;QACnB,KAAK,wBAAY,CAAC,cAAc;YAC9B,OAAO,oBAAc,CAAC;QACxB,KAAK,wBAAY,CAAC,UAAU;YAC1B,OAAO,gBAAU,CAAC;QACpB,KAAK,wBAAY,CAAC,QAAQ;YACxB,OAAO,cAAQ,CAAC;QAClB,KAAK,wBAAY,CAAC,YAAY;YAC5B,OAAO,kBAAY,CAAC;QACtB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,YAAM,CAAC;QAChB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,YAAM,CAAC;QAChB,KAAK,wBAAY,CAAC,aAAa;YAC7B,OAAO,mBAAa,CAAC;QACvB,KAAK,wBAAY,CAAC,YAAY;YAC5B,OAAO,kBAAY,CAAC;QACtB,KAAK,wBAAY,CAAC,KAAK;YACrB,OAAO,WAAK,CAAC;QACf,KAAK,wBAAY,CAAC,QAAQ;YACxB,OAAO,cAAQ,CAAC;QAClB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,YAAM,CAAC;QAChB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,YAAM,CAAC;QAChB;YACE,MAAM,gBAAgB,GAAU,QAAQ,CAAC;YACzC,MAAM,IAAI,KAAK,CACb,0BAA0B,QAAkB,0BAA0B,CACvE,CAAC;KACL;AACH,CAAC;AA5CD,wEA4CC;AAED,SAAgB,2BAA2B,CAAC,MAAc;IACxD,MAAM,EAAE,MAAM,EAAE,GAAG,IAAA,6BAAmB,EACpC,sBAAsB,CACkB,CAAC;IAE3C,QAAQ,MAAM,EAAE;QACd,KAAK,MAAM,CAAC,QAAQ;YAClB,OAAO,wBAAY,CAAC,QAAQ,CAAC;QAC/B,KAAK,MAAM,CAAC,SAAS;YACnB,OAAO,wBAAY,CAAC,SAAS,CAAC;QAChC,KAAK,MAAM,CAAC,OAAO;YACjB,OAAO,wBAAY,CAAC,GAAG,CAAC;QAC1B,KAAK,MAAM,CAAC,SAAS;YACnB,OAAO,wBAAY,CAAC,iBAAiB,CAAC;QACxC,KAAK,MAAM,CAAC,cAAc;YACxB,OAAO,wBAAY,CAAC,eAAe,CAAC;QACtC,KAAK,MAAM,CAAC,SAAS;YACnB,OAAO,wBAAY,CAAC,SAAS,CAAC;QAChC,KAAK,MAAM,CAAC,cAAc;YACxB,OAAO,wBAAY,CAAC,cAAc,CAAC;QACrC,KAAK,MAAM,CAAC,UAAU;YACpB,OAAO,wBAAY,CAAC,UAAU,CAAC;QACjC,KAAK,MAAM,CAAC,QAAQ;YAClB,OAAO,wBAAY,CAAC,QAAQ,CAAC;QAC/B,KAAK,MAAM,CAAC,WAAW;YACrB,OAAO,wBAAY,CAAC,YAAY,CAAC;QACnC,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,YAAY;YACtB,OAAO,wBAAY,CAAC,aAAa,CAAC;QACpC,KAAK,MAAM,CAAC,WAAW;YACrB,OAAO,wBAAY,CAAC,YAAY,CAAC;QACnC,KAAK,MAAM,CAAC,KAAK;YACf,OAAO,wBAAY,CAAC,KAAK,CAAC;QAC5B,KAAK,MAAM,CAAC,QAAQ;YAClB,OAAO,wBAAY,CAAC,QAAQ,CAAC;QAC/B,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAE7B;YACE,MAAM,IAAI,KAAK,CAAC,oBAAoB,MAAM,0BAA0B,CAAC,CAAC;KACzE;AACH,CAAC;AA9CD,kEA8CC;AAED,SAAgB,mCAAmC,CACjD,MAA4B;IAE5B,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;QAC9B,+BAA+B;QAC/B,IAAI,MAAM,KAAK,CAAC,EAAE;YAChB,OAAO,SAAS,CAAC;SAClB;aAAM;YACL,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC;SACvB;KACF;SAAM;QACL,OAAO;YACL,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YACtB,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;SACvB,CAAC;KACH;AACH,CAAC;AAhBD,kFAgBC;AAED,SAAgB,uCAAuC,CACrD,YAA0B;IAE1B,MAAM,EAAE,YAAY,EAAE,GAAG,IAAA,6BAAmB,EAC1C,sBAAsB,CACkB,CAAC;IAE3C,QAAQ,YAAY,EAAE;QACpB,KAAK,MAAM;YACT,OAAO,YAAY,CAAC,IAAI,CAAC;QAC3B,KAAK,UAAU;YACb,OAAO,YAAY,CAAC,QAAQ,CAAC;KAChC;AACH,CAAC;AAbD,0FAaC;AAED,SAAgB,yBAAyB,CACvC,aAA+B;IAE/B,MAAM,UAAU,GAAG,aAAa,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE;QACtD,MAAM,MAAM,GAAiB;YAC3B,KAAK,EAAE,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC;YACxB,GAAG,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;YACpB,OAAO,EAAE,MAAM,CAAC,GAAG,CAAC,OAAO,CAAC;YAC5B,EAAE,EAAE,GAAG,CAAC,MAAM;YACd,EAAE,EAAE,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC;SACnB,CAAC;QAEF,IAAI,GAAG,CAAC,MAAM,KAAK,SAAS,EAAE;YAC5B,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;SAC5B;QAED,IAAI,GAAG,CAAC,KAAK,KAAK,SAAS,EAAE;YAC3B,+EAA+E;YAC/E,MAAM,CAAC,KAAK,GAAG,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;SACxD;QAED,IAAI,GAAG,CAAC,OAAO,KAAK,SAAS,EAAE;YAC7B,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC,WAAW,CACjC,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,EAAE;gBAC/C,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;YACxC,CAAC,CAAC,CACH,CAAC;SACH;QAED,IAAI,GAAG,CAAC,KAAK,KAAK,SAAS,EAAE;YAC3B,MAAM,CAAC,KAAK,GAAG;gBACb,OAAO,EAAE,GAAG,CAAC,KAAK;aACnB,CAAC;SACH;QAED,OAAO,MAAM,CAAC;IAChB,CAAC,CAAC,CAAC;IAEH,2DAA2D;IAC3D,IAAI,UAAU,CAAC,MAAM,GAAG,CAAC,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,MAAM,EAAE;QACxD,UAAU,CAAC,KAAK,EAAE,CAAC;KACpB;IAED,IAAI,WAAW,GAAG,aAAa,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzD,IAAI,WAAW,KAAK,IAAI,EAAE;QACxB,WAAW,GAAG,EAAE,CAAC;KAClB;IAED,OAAO;QACL,MAAM,EAAE,CAAC,aAAa,CAAC,IAAI;QAC3B,GAAG,EAAE,MAAM,CAAC,aAAa,CAAC,OAAO,CAAC;QAClC,WAAW;QACX,UAAU;KACX,CAAC;AACJ,CAAC;AAtDD,8DAsDC;AAED,SAAgB,sCAAsC,CACpD,IAAiB;IAEjB,MAAM,sBAAsB,GAA2B;QACrD,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;QACnB,KAAK,EAAE,IAAI,CAAC,KAAK;QACjB,MAAM,EAAE;YACN,IAAI,EAAE,IAAI,CAAC,MAAM;SAClB;QACD,KAAK,EAAE,IAAI,CAAC,KAAK;KAClB,CAAC;IAEF,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,EAAE;QAC7B,sBAAsB,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;KAC7C;IAED,OAAO,sBAAsB,CAAC;AAChC,CAAC;AAjBD,wFAiBC;AAED,SAAgB,yCAAyC,CACvD,oBAA0C;IAE1C,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,GAAG,oBAAoB,CAAC,eAAe,CAAC;IAEzE,8BAA8B;IAC9B,MAAM,OAAO,GAAG,MAAM,IAAI,MAAM,CAAC;IAEjC,MAAM,gBAAgB,GAAqB;QACzC,UAAU,EAAE;YACV,gBAAgB,EAAE,MAAM,CAAC,OAAO;YAChC,OAAO;SACR;KACF,CAAC;IAEF,gDAAgD;IAChD,IAAI,QAAQ,IAAI,MAAM,EAAE;QACtB,gBAAgB,CAAC,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;KACpD;IACD,IAAI,QAAQ,IAAI,MAAM,EAAE;QACtB,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC;QAC1B,IAAI,MAAM,YAAY,UAAU,EAAE;YAChC,gBAAgB,CAAC,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;SAC1D;aAAM;YACL,gBAAgB,CAAC,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;SACtE;KACF;IAED,IAAI,eAAe,KAAK,SAAS,EAAE;QACjC,gBAAgB,CAAC,UAAU,CAAC,eAAe,GAAG,IAAI,cAAO,CAAC,eAAe,CAAC,CAAC;KAC5E;IAED,OAAO,gBAAgB,CAAC;AAC1B,CAAC;AAjCD,8FAiCC;AAED,SAAgB,iCAAiC,CAC/C,OAAuB;IAEvB,OAAO;QACL,EAAE,EAAE,OAAO,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,cAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS;QAClE,WAAW,EACT,OAAO,CAAC,WAAW,KAAK,SAAS;YAC/B,CAAC,CAAC,IAAI,cAAO,CAAC,OAAO,CAAC,WAAW,CAAC;YAClC,CAAC,CAAC,SAAS;QACf,IAAI,EAAE,OAAO,CAAC,IAAI;QAClB,KAAK,EAAE,OAAO,CAAC,KAAK;QACpB,MAAM,EAAE,IAAI,cAAO,CAAC,OAAO,CAAC,MAAM,CAAC;QACnC,QAAQ,EAAE,OAAO,CAAC,QAAQ;QAC1B,YAAY,EAAE,OAAO,CAAC,YAAY;KACnC,CAAC;AACJ,CAAC;AAfD,8EAeC;AAED,SAAgB,gBAAgB,CAAC,KAEhC;IACC,IAAI,WAAqC,CAAC;IAC1C,IAAI,KAAK,KAAK,SAAS,EAAE;QACvB,WAAW,GAAG,EAAE,CAAC;QAEjB,KAAK,MAAM,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;YACjD,WAAW,CAAC,IAAI,CAAC;gBACf,IAAI;gBACJ,KAAK;aACN,CAAC,CAAC;SACJ;KACF;IAED,OAAO,WAAW,CAAC;AACrB,CAAC;AAhBD,4CAgBC"} -\ No newline at end of file -diff --git a/internal/hardhat-network/provider/utils/fork-recomendations-banner.d.ts b/internal/hardhat-network/provider/utils/fork-recomendations-banner.d.ts -new file mode 100644 -index 0000000000000000000000000000000000000000..dbcfa7266d730e0a1f28814e1d2cb07768bb31c3 ---- /dev/null -+++ b/internal/hardhat-network/provider/utils/fork-recomendations-banner.d.ts -@@ -0,0 +1,3 @@ -+import { NetworkConfig } from "../../../../types"; -+export declare function showForkRecommendationsBannerIfNecessary(currentNetworkConfig: NetworkConfig, forkCachePath: string): Promise; -+//# sourceMappingURL=fork-recomendations-banner.d.ts.map -\ No newline at end of file -diff --git a/internal/hardhat-network/provider/utils/fork-recomendations-banner.d.ts.map b/internal/hardhat-network/provider/utils/fork-recomendations-banner.d.ts.map -new file mode 100644 -index 0000000000000000000000000000000000000000..10e5dad2045393033b29f93911b73dabf643a2a7 ---- /dev/null -+++ b/internal/hardhat-network/provider/utils/fork-recomendations-banner.d.ts.map -@@ -0,0 +1 @@ -+{"version":3,"file":"fork-recomendations-banner.d.ts","sourceRoot":"","sources":["../../../../src/internal/hardhat-network/provider/utils/fork-recomendations-banner.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAiBlD,wBAAsB,wCAAwC,CAC5D,oBAAoB,EAAE,aAAa,EACnC,aAAa,EAAE,MAAM,iBAwBtB"} -\ No newline at end of file -diff --git a/internal/hardhat-network/provider/utils/fork-recomendations-banner.js b/internal/hardhat-network/provider/utils/fork-recomendations-banner.js -new file mode 100644 -index 0000000000000000000000000000000000000000..5ec0755071926150115f218f48e2260a788adb8d ---- /dev/null -+++ b/internal/hardhat-network/provider/utils/fork-recomendations-banner.js -@@ -0,0 +1,38 @@ -+"use strict"; -+var __importDefault = (this && this.__importDefault) || function (mod) { -+ return (mod && mod.__esModule) ? mod : { "default": mod }; -+}; -+Object.defineProperty(exports, "__esModule", { value: true }); -+exports.showForkRecommendationsBannerIfNecessary = void 0; -+const picocolors_1 = __importDefault(require("picocolors")); -+const fs_extra_1 = __importDefault(require("fs-extra")); -+const path_1 = __importDefault(require("path")); -+function getAlreadyShownFilePath(forkCachePath) { -+ return path_1.default.join(forkCachePath, "recommendations-already-shown.json"); -+} -+function displayBanner() { -+ console.warn(picocolors_1.default.yellow(`You're running a network fork starting from the latest block. -+Performance may degrade due to fetching data from the network with each run. -+If connecting to an archival node (e.g. Alchemy), we strongly recommend setting -+blockNumber to a fixed value to increase performance with a local cache.`)); -+} -+async function showForkRecommendationsBannerIfNecessary(currentNetworkConfig, forkCachePath) { -+ if (!("forking" in currentNetworkConfig)) { -+ return; -+ } -+ if (currentNetworkConfig.forking?.enabled !== true) { -+ return; -+ } -+ if (currentNetworkConfig.forking?.blockNumber !== undefined) { -+ return; -+ } -+ const shownPath = getAlreadyShownFilePath(forkCachePath); -+ if (await fs_extra_1.default.pathExists(shownPath)) { -+ return; -+ } -+ displayBanner(); -+ await fs_extra_1.default.ensureDir(path_1.default.dirname(shownPath)); -+ await fs_extra_1.default.writeJSON(shownPath, true); -+} -+exports.showForkRecommendationsBannerIfNecessary = showForkRecommendationsBannerIfNecessary; -+//# sourceMappingURL=fork-recomendations-banner.js.map -\ No newline at end of file -diff --git a/internal/hardhat-network/provider/utils/fork-recomendations-banner.js.map b/internal/hardhat-network/provider/utils/fork-recomendations-banner.js.map -new file mode 100644 -index 0000000000000000000000000000000000000000..4f6678c34c16cee3025151977f1bb921add53c90 ---- /dev/null -+++ b/internal/hardhat-network/provider/utils/fork-recomendations-banner.js.map -@@ -0,0 +1 @@ -+{"version":3,"file":"fork-recomendations-banner.js","sourceRoot":"","sources":["../../../../src/internal/hardhat-network/provider/utils/fork-recomendations-banner.ts"],"names":[],"mappings":";;;;;;AAAA,4DAAoC;AACpC,wDAA+B;AAC/B,gDAAwB;AAIxB,SAAS,uBAAuB,CAAC,aAAqB;IACpD,OAAO,cAAI,CAAC,IAAI,CAAC,aAAa,EAAE,oCAAoC,CAAC,CAAC;AACxE,CAAC;AAED,SAAS,aAAa;IACpB,OAAO,CAAC,IAAI,CACV,oBAAU,CAAC,MAAM,CACf;;;yEAGmE,CACpE,CACF,CAAC;AACJ,CAAC;AAEM,KAAK,UAAU,wCAAwC,CAC5D,oBAAmC,EACnC,aAAqB;IAErB,IAAI,CAAC,CAAC,SAAS,IAAI,oBAAoB,CAAC,EAAE;QACxC,OAAO;KACR;IAED,IAAI,oBAAoB,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,EAAE;QAClD,OAAO;KACR;IAED,IAAI,oBAAoB,CAAC,OAAO,EAAE,WAAW,KAAK,SAAS,EAAE;QAC3D,OAAO;KACR;IAED,MAAM,SAAS,GAAG,uBAAuB,CAAC,aAAa,CAAC,CAAC;IAEzD,IAAI,MAAM,kBAAO,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE;QACvC,OAAO;KACR;IAED,aAAa,EAAE,CAAC;IAEhB,MAAM,kBAAO,CAAC,SAAS,CAAC,cAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC;IACjD,MAAM,kBAAO,CAAC,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAC3C,CAAC;AA1BD,4FA0BC"} -\ No newline at end of file -diff --git a/src/internal/hardhat-network/provider/provider.ts b/src/internal/hardhat-network/provider/provider.ts -index d895688d7b6ebed5a80db9b64017062b8bd42c10..c72902f2857b8bc205e71335bced78f591a3c8f4 100644 ---- a/src/internal/hardhat-network/provider/provider.ts -+++ b/src/internal/hardhat-network/provider/provider.ts -@@ -1,5 +1,7 @@ - import type { - Artifacts, -+ CompilerInput, -+ CompilerOutput, - EIP1193Provider, - EthSubscription, - HardhatNetworkChainsConfig, -@@ -8,23 +10,39 @@ import type { - - import type { - EdrContext, -+ LoggerConfig as EdrLoggerConfig, - Provider as EdrProviderT, - Response, - SubscriptionEvent, -- HttpHeader, - TracingConfigWithBuffers, -+ ProviderConfig, -+ SubscriptionConfig, - } from "@nomicfoundation/edr"; -+import { privateToAddress } from "@ethereumjs/util"; -+import { ContractDecoder, precompileP256Verify } from "@nomicfoundation/edr"; - import picocolors from "picocolors"; - import debug from "debug"; - import { EventEmitter } from "events"; - import fsExtra from "fs-extra"; -+import * as t from "io-ts"; - - import { requireNapiRsModule } from "../../../common/napi-rs"; - import { - HARDHAT_NETWORK_RESET_EVENT, - HARDHAT_NETWORK_REVERT_SNAPSHOT_EVENT, - } from "../../constants"; -+import { numberToRpcQuantity } from "../../core/jsonrpc/types/base-types"; - import { -+ optionalRpcHardhatNetworkConfig, -+ RpcHardhatNetworkConfig, -+} from "../../core/jsonrpc/types/input/hardhat-network"; -+import { -+ rpcCompilerInput, -+ rpcCompilerOutput, -+} from "../../core/jsonrpc/types/input/solc"; -+import { validateParams } from "../../core/jsonrpc/types/input/validation"; -+import { -+ InternalError, - InvalidArgumentsError, - InvalidInputError, - ProviderError, -@@ -50,6 +68,7 @@ import { - ethereumjsIntervalMiningConfigToEdr, - ethereumjsMempoolOrderToEdrMineOrdering, - ethereumsjsHardforkToEdrSpecId, -+ httpHeadersToEdr, - } from "./utils/convertToEdr"; - import { LoggerConfig, printLine, replaceLastLine } from "./modules/logger"; - import { MinimalEthereumJsVm, getMinimalEthereumJsVm } from "./vm/minimal-vm"; -@@ -62,14 +81,19 @@ export const DEFAULT_COINBASE = "0xc014ba5ec014ba5ec014ba5ec014ba5ec014ba5e"; - let _globalEdrContext: EdrContext | undefined; - - // Lazy initialize the global EDR context. --export function getGlobalEdrContext(): EdrContext { -- const { EdrContext } = requireNapiRsModule( -- "@nomicfoundation/edr" -- ) as typeof import("@nomicfoundation/edr"); -+export async function getGlobalEdrContext(): Promise { -+ const { EdrContext, GENERIC_CHAIN_TYPE, genericChainProviderFactory } = -+ requireNapiRsModule( -+ "@nomicfoundation/edr" -+ ) as typeof import("@nomicfoundation/edr"); - - if (_globalEdrContext === undefined) { - // Only one is allowed to exist - _globalEdrContext = new EdrContext(); -+ await _globalEdrContext.registerProviderFactory( -+ GENERIC_CHAIN_TYPE, -+ genericChainProviderFactory() -+ ); - } - - return _globalEdrContext; -@@ -119,11 +143,14 @@ export class EdrProviderWrapper - private _callOverrideCallback?: CallOverrideCallback; - - private constructor( -- private readonly _provider: EdrProviderT, -+ private _provider: EdrProviderT, -+ private readonly _providerConfig: ProviderConfig, -+ private readonly _loggerConfig: EdrLoggerConfig, - // we add this for backwards-compatibility with plugins like solidity-coverage -- private readonly _node: { -+ private _node: { - _vm: MinimalEthereumJsVm; -- } -+ }, -+ private readonly _subscriptionConfig: SubscriptionConfig - ) { - super(); - } -@@ -133,35 +160,43 @@ export class EdrProviderWrapper - loggerConfig: LoggerConfig, - tracingConfig?: TracingConfigWithBuffers - ): Promise { -- const { Provider } = requireNapiRsModule( -- "@nomicfoundation/edr" -- ) as typeof import("@nomicfoundation/edr"); -+ const { GENERIC_CHAIN_TYPE, l1GenesisState, l1HardforkFromString } = -+ requireNapiRsModule( -+ "@nomicfoundation/edr" -+ ) as typeof import("@nomicfoundation/edr"); - - const coinbase = config.coinbase ?? DEFAULT_COINBASE; - - let fork; - if (config.forkConfig !== undefined) { -- let httpHeaders: HttpHeader[] | undefined; -- if (config.forkConfig.httpHeaders !== undefined) { -- httpHeaders = []; -- -- for (const [name, value] of Object.entries( -- config.forkConfig.httpHeaders -- )) { -- httpHeaders.push({ -- name, -- value, -- }); -- } -- } -- - fork = { -- jsonRpcUrl: config.forkConfig.jsonRpcUrl, - blockNumber: - config.forkConfig.blockNumber !== undefined - ? BigInt(config.forkConfig.blockNumber) - : undefined, -- httpHeaders, -+ cacheDir: config.forkCachePath, -+ chainOverrides: Array.from( -+ config.chains, -+ ([chainId, hardforkConfig]) => { -+ return { -+ chainId: BigInt(chainId), -+ name: "Unknown", -+ hardforks: Array.from( -+ hardforkConfig.hardforkHistory, -+ ([hardfork, blockNumber]) => { -+ return { -+ condition: { blockNumber: BigInt(blockNumber) }, -+ hardfork: ethereumsjsHardforkToEdrSpecId( -+ getHardforkName(hardfork) -+ ), -+ }; -+ } -+ ), -+ }; -+ } -+ ), -+ httpHeaders: httpHeadersToEdr(config.forkConfig.httpHeaders), -+ url: config.forkConfig.jsonRpcUrl, - }; - } - -@@ -179,80 +214,106 @@ export class EdrProviderWrapper - - const hardforkName = getHardforkName(config.hardfork); - -- const provider = await Provider.withConfig( -- getGlobalEdrContext(), -- { -- allowBlocksWithSameTimestamp: -- config.allowBlocksWithSameTimestamp ?? false, -- allowUnlimitedContractSize: config.allowUnlimitedContractSize, -- bailOnCallFailure: config.throwOnCallFailures, -- bailOnTransactionFailure: config.throwOnTransactionFailures, -- blockGasLimit: BigInt(config.blockGasLimit), -- chainId: BigInt(config.chainId), -- chains: Array.from(config.chains, ([chainId, hardforkConfig]) => { -- return { -- chainId: BigInt(chainId), -- hardforks: Array.from( -- hardforkConfig.hardforkHistory, -- ([hardfork, blockNumber]) => { -- return { -- blockNumber: BigInt(blockNumber), -- specId: ethereumsjsHardforkToEdrSpecId( -- getHardforkName(hardfork) -- ), -- }; -- } -- ), -- }; -- }), -- cacheDir: config.forkCachePath, -- coinbase: Buffer.from(coinbase.slice(2), "hex"), -- enableRip7212: config.enableRip7212, -- fork, -- hardfork: ethereumsjsHardforkToEdrSpecId(hardforkName), -- genesisAccounts: config.genesisAccounts.map((account) => { -- return { -- secretKey: account.privateKey, -- balance: BigInt(account.balance), -- }; -- }), -- initialDate, -- initialBaseFeePerGas: -- config.initialBaseFeePerGas !== undefined -- ? BigInt(config.initialBaseFeePerGas!) -- : undefined, -- minGasPrice: config.minGasPrice, -- mining: { -- autoMine: config.automine, -- interval: ethereumjsIntervalMiningConfigToEdr(config.intervalMining), -- memPool: { -- order: ethereumjsMempoolOrderToEdrMineOrdering(config.mempoolOrder), -- }, -+ const genesisState = -+ fork !== undefined -+ ? [] // TODO: Add support for overriding remote fork state when the local fork is different -+ : l1GenesisState( -+ l1HardforkFromString(ethereumsjsHardforkToEdrSpecId(hardforkName)) -+ ); -+ -+ const ownedAccounts = config.genesisAccounts.map((account) => { -+ const privateKey = Uint8Array.from( -+ // Strip the `0x` prefix -+ Buffer.from(account.privateKey.slice(2), "hex") -+ ); -+ -+ genesisState.push({ -+ address: privateToAddress(privateKey), -+ balance: BigInt(account.balance), -+ }); -+ -+ return account.privateKey; -+ }); -+ -+ const edrProviderConfig = { -+ allowBlocksWithSameTimestamp: -+ config.allowBlocksWithSameTimestamp ?? false, -+ allowUnlimitedContractSize: config.allowUnlimitedContractSize, -+ bailOnCallFailure: config.throwOnCallFailures, -+ bailOnTransactionFailure: config.throwOnTransactionFailures, -+ blockGasLimit: BigInt(config.blockGasLimit), -+ chainId: BigInt(config.chainId), -+ coinbase: Buffer.from(coinbase.slice(2), "hex"), -+ precompileOverrides: config.enableRip7212 ? [precompileP256Verify()] : [], -+ fork, -+ genesisState, -+ hardfork: ethereumsjsHardforkToEdrSpecId(hardforkName), -+ initialDate, -+ initialBaseFeePerGas: -+ config.initialBaseFeePerGas !== undefined -+ ? BigInt(config.initialBaseFeePerGas!) -+ : undefined, -+ minGasPrice: config.minGasPrice, -+ mining: { -+ autoMine: config.automine, -+ interval: ethereumjsIntervalMiningConfigToEdr(config.intervalMining), -+ memPool: { -+ order: ethereumjsMempoolOrderToEdrMineOrdering(config.mempoolOrder), - }, -- networkId: BigInt(config.networkId), - }, -- { -- enable: loggerConfig.enabled, -- decodeConsoleLogInputsCallback: ConsoleLogger.getDecodedLogs, -- printLineCallback: (message: string, replace: boolean) => { -- if (replace) { -- replaceLastLineFn(message); -- } else { -- printLineFn(message); -- } -- }, -+ networkId: BigInt(config.networkId), -+ observability: {}, -+ ownedAccounts, -+ }; -+ -+ const edrLoggerConfig = { -+ enable: loggerConfig.enabled, -+ decodeConsoleLogInputsCallback: (inputs: ArrayBuffer[]) => { -+ return ConsoleLogger.getDecodedLogs( -+ inputs.map((input) => { -+ return Buffer.from(input); -+ }) -+ ); - }, -- tracingConfig ?? {}, -- (event: SubscriptionEvent) => { -+ printLineCallback: (message: string, replace: boolean) => { -+ if (replace) { -+ replaceLastLineFn(message); -+ } else { -+ printLineFn(message); -+ } -+ }, -+ }; -+ -+ const edrSubscriptionConfig = { -+ subscriptionCallback: (event: SubscriptionEvent) => { - eventAdapter.emit("ethEvent", event); -- } -+ }, -+ }; -+ -+ const edrTracingConfig = tracingConfig ?? {}; -+ -+ const contractDecoder = ContractDecoder.withContracts(edrTracingConfig); -+ -+ const context = await getGlobalEdrContext(); -+ const provider = await context.createProvider( -+ GENERIC_CHAIN_TYPE, -+ edrProviderConfig, -+ edrLoggerConfig, -+ edrSubscriptionConfig, -+ contractDecoder - ); - - const minimalEthereumJsNode = { - _vm: getMinimalEthereumJsVm(provider), - }; - -- const wrapper = new EdrProviderWrapper(provider, minimalEthereumJsNode); -+ const wrapper = new EdrProviderWrapper( -+ provider, -+ edrProviderConfig, -+ edrLoggerConfig, -+ minimalEthereumJsNode, -+ edrSubscriptionConfig -+ ); - - // Pass through all events from the provider - eventAdapter.addListener( -@@ -272,9 +333,22 @@ export class EdrProviderWrapper - - const params = args.params ?? []; - -- if (args.method === "hardhat_getStackTraceFailuresCount") { -- // stubbed for backwards compatibility -- return 0; -+ // stubbed for backwards compatibility -+ switch (args.method) { -+ case "hardhat_getStackTraceFailuresCount": -+ return 0; -+ case "eth_mining": -+ return false; -+ case "net_listening": -+ return true; -+ case "net_peerCount": -+ return numberToRpcQuantity(0); -+ case "hardhat_reset": -+ return this._reset(..._resetParams(params)); -+ case "hardhat_addCompilationResult": -+ return this._addCompilationResult( -+ ..._addCompilationResultParams(params) -+ ); - } - - const stringifiedArgs = JSON.stringify({ -@@ -301,7 +375,7 @@ export class EdrProviderWrapper - const rawTraces = responseObject.traces; - for (const rawTrace of rawTraces) { - // For other consumers in JS we need to marshall the entire trace over FFI -- const trace = rawTrace.trace(); -+ const trace = rawTrace.trace; - - // beforeTx event - if (this._node._vm.events.listenerCount("beforeTx") > 0) { -@@ -377,9 +451,7 @@ export class EdrProviderWrapper - throw error; - } - -- if (args.method === "hardhat_reset") { -- this.emit(HARDHAT_NETWORK_RESET_EVENT); -- } else if (args.method === "evm_revert") { -+ if (args.method === "evm_revert") { - this.emit(HARDHAT_NETWORK_REVERT_SNAPSHOT_EVENT); - } - -@@ -397,19 +469,81 @@ export class EdrProviderWrapper - } - } - -+ private async _addCompilationResult( -+ solcVersion: string, -+ input: CompilerInput, -+ output: CompilerOutput -+ ): Promise { -+ try { -+ await this._provider.addCompilationResult(solcVersion, input, output); -+ -+ return true; -+ } catch (error: any) { -+ // eslint-disable-next-line @nomicfoundation/hardhat-internal-rules/only-hardhat-error -+ throw new InternalError(error); -+ } -+ } -+ -+ private async _reset(networkConfig?: RpcHardhatNetworkConfig) { -+ const { GENERIC_CHAIN_TYPE } = requireNapiRsModule( -+ "@nomicfoundation/edr" -+ ) as typeof import("@nomicfoundation/edr"); -+ const forkConfig = networkConfig?.forking; -+ -+ if (forkConfig !== undefined) { -+ this._providerConfig.fork = { -+ blockNumber: -+ forkConfig.blockNumber !== undefined -+ ? BigInt(forkConfig.blockNumber) -+ : undefined, -+ cacheDir: this._providerConfig.fork?.cacheDir, -+ chainOverrides: this._providerConfig.fork?.chainOverrides, -+ httpHeaders: httpHeadersToEdr(forkConfig.httpHeaders), -+ url: forkConfig.jsonRpcUrl, -+ }; -+ } else { -+ this._providerConfig.fork = undefined; -+ } -+ -+ const context = await getGlobalEdrContext(); -+ const provider = await context.createProvider( -+ GENERIC_CHAIN_TYPE, -+ this._providerConfig, -+ this._loggerConfig, -+ this._subscriptionConfig, -+ this._provider.contractDecoder() -+ ); -+ -+ const minimalEthereumJsNode = { -+ _vm: getMinimalEthereumJsVm(provider), -+ }; -+ -+ this._provider = provider; -+ this._node = minimalEthereumJsNode; -+ -+ this.emit(HARDHAT_NETWORK_RESET_EVENT); -+ -+ return true; -+ } -+ - // temporarily added to make smock work with HH+EDR -- private _setCallOverrideCallback(callback: CallOverrideCallback) { -+ private async _setCallOverrideCallback( -+ callback: CallOverrideCallback -+ ): Promise { - this._callOverrideCallback = callback; - -- this._provider.setCallOverrideCallback( -- async (address: Buffer, data: Buffer) => { -- return this._callOverrideCallback?.(address, data); -+ await this._provider.setCallOverrideCallback( -+ async (address: ArrayBuffer, data: ArrayBuffer) => { -+ return this._callOverrideCallback?.( -+ Buffer.from(address), -+ Buffer.from(data) -+ ); - } - ); - } - -- private _setVerboseTracing(enabled: boolean) { -- this._provider.setVerboseTracing(enabled); -+ private async _setVerboseTracing(enabled: boolean): Promise { -+ await this._provider.setVerboseTracing(enabled); - } - - private _ethEventListener(event: SubscriptionEvent) { -@@ -493,3 +627,13 @@ async function makeTracingConfig( - } - } - } -+ -+function _addCompilationResultParams( -+ params: any[] -+): [string, CompilerInput, CompilerOutput] { -+ return validateParams(params, t.string, rpcCompilerInput, rpcCompilerOutput); -+} -+ -+function _resetParams(params: any[]): [RpcHardhatNetworkConfig | undefined] { -+ return validateParams(params, optionalRpcHardhatNetworkConfig); -+} -diff --git a/src/internal/hardhat-network/provider/utils/convertToEdr.ts b/src/internal/hardhat-network/provider/utils/convertToEdr.ts -index c5e9bd797f6bb1d3bb95922681dfd7a20b8138f9..a3be30a758f4bc2feee031526dd3cfc56741fee8 100644 ---- a/src/internal/hardhat-network/provider/utils/convertToEdr.ts -+++ b/src/internal/hardhat-network/provider/utils/convertToEdr.ts -@@ -6,6 +6,27 @@ import type { - TracingMessage, - TracingMessageResult, - TracingStep, -+ HttpHeader, -+} from "@nomicfoundation/edr"; -+import { -+ FRONTIER, -+ HOMESTEAD, -+ DAO_FORK, -+ TANGERINE, -+ SPURIOUS_DRAGON, -+ BYZANTIUM, -+ CONSTANTINOPLE, -+ PETERSBURG, -+ ISTANBUL, -+ MUIR_GLACIER, -+ BERLIN, -+ LONDON, -+ ARROW_GLACIER, -+ GRAY_GLACIER, -+ MERGE, -+ SHANGHAI, -+ CANCUN, -+ PRAGUE, - } from "@nomicfoundation/edr"; - import { Address } from "@ethereumjs/util"; - -@@ -21,48 +42,44 @@ import { - - /* eslint-disable @nomicfoundation/hardhat-internal-rules/only-hardhat-error */ - --export function ethereumsjsHardforkToEdrSpecId(hardfork: HardforkName): SpecId { -- const { SpecId } = requireNapiRsModule( -- "@nomicfoundation/edr" -- ) as typeof import("@nomicfoundation/edr"); -- -+export function ethereumsjsHardforkToEdrSpecId(hardfork: HardforkName): string { - switch (hardfork) { - case HardforkName.FRONTIER: -- return SpecId.Frontier; -+ return FRONTIER; - case HardforkName.HOMESTEAD: -- return SpecId.Homestead; -+ return HOMESTEAD; - case HardforkName.DAO: -- return SpecId.DaoFork; -+ return DAO_FORK; - case HardforkName.TANGERINE_WHISTLE: -- return SpecId.Tangerine; -+ return TANGERINE; - case HardforkName.SPURIOUS_DRAGON: -- return SpecId.SpuriousDragon; -+ return SPURIOUS_DRAGON; - case HardforkName.BYZANTIUM: -- return SpecId.Byzantium; -+ return BYZANTIUM; - case HardforkName.CONSTANTINOPLE: -- return SpecId.Constantinople; -+ return CONSTANTINOPLE; - case HardforkName.PETERSBURG: -- return SpecId.Petersburg; -+ return PETERSBURG; - case HardforkName.ISTANBUL: -- return SpecId.Istanbul; -+ return ISTANBUL; - case HardforkName.MUIR_GLACIER: -- return SpecId.MuirGlacier; -+ return MUIR_GLACIER; - case HardforkName.BERLIN: -- return SpecId.Berlin; -+ return BERLIN; - case HardforkName.LONDON: -- return SpecId.London; -+ return LONDON; - case HardforkName.ARROW_GLACIER: -- return SpecId.ArrowGlacier; -+ return ARROW_GLACIER; - case HardforkName.GRAY_GLACIER: -- return SpecId.GrayGlacier; -+ return GRAY_GLACIER; - case HardforkName.MERGE: -- return SpecId.Merge; -+ return MERGE; - case HardforkName.SHANGHAI: -- return SpecId.Shanghai; -+ return SHANGHAI; - case HardforkName.CANCUN: -- return SpecId.Cancun; -+ return CANCUN; - case HardforkName.PRAGUE: -- return SpecId.Prague; -+ return PRAGUE; - default: - const _exhaustiveCheck: never = hardfork; - throw new Error( -@@ -195,7 +212,7 @@ export function edrRpcDebugTraceToHardhat( - structLogs.shift(); - } - -- let returnValue = rpcDebugTrace.output?.toString("hex") ?? ""; -+ let returnValue = rpcDebugTrace.output?.toString() ?? ""; - if (returnValue === "0x") { - returnValue = ""; - } -@@ -248,10 +265,10 @@ export function edrTracingMessageResultToMinimalEVMResult( - } - if ("output" in result) { - const { output } = result; -- if (Buffer.isBuffer(output)) { -- minimalEVMResult.execResult.output = output; -+ if (output instanceof Uint8Array) { -+ minimalEVMResult.execResult.output = Buffer.from(output); - } else { -- minimalEVMResult.execResult.output = output.returnValue; -+ minimalEVMResult.execResult.output = Buffer.from(output.returnValue); - } - } - -@@ -278,3 +295,21 @@ export function edrTracingMessageToMinimalMessage( - isStaticCall: message.isStaticCall, - }; - } -+ -+export function httpHeadersToEdr(input?: { -+ [name: string]: string; -+}): HttpHeader[] | undefined { -+ let httpHeaders: HttpHeader[] | undefined; -+ if (input !== undefined) { -+ httpHeaders = []; -+ -+ for (const [name, value] of Object.entries(input)) { -+ httpHeaders.push({ -+ name, -+ value, -+ }); -+ } -+ } -+ -+ return httpHeaders; -+} diff --git a/patches/hardhat@2.28.0.patch b/patches/hardhat@2.28.0.patch new file mode 100644 index 0000000000..1f7799ff67 --- /dev/null +++ b/patches/hardhat@2.28.0.patch @@ -0,0 +1,224 @@ +diff --git a/internal/hardhat-network/provider/provider.d.ts.map b/internal/hardhat-network/provider/provider.d.ts.map +index 6434ed3d8cb56ab135b2c13ac1d388e5676f382d..daadc42f24b0ce3d6dbb93f01510565cff65e5bd 100644 +--- a/internal/hardhat-network/provider/provider.d.ts.map ++++ b/internal/hardhat-network/provider/provider.d.ts.map +@@ -1 +1 @@ +-{"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../../src/internal/hardhat-network/provider/provider.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EACV,SAAS,EAGT,eAAe,EAEf,0BAA0B,EAC1B,gBAAgB,EACjB,MAAM,gBAAgB,CAAC;AAExB,OAAO,KAAK,EACV,UAAU,EAKV,wBAAwB,EAGzB,MAAM,sBAAsB,CAAC;AAK9B,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAoCtC,OAAO,EACL,UAAU,EACV,cAAc,EACd,oBAAoB,EACpB,YAAY,EACb,MAAM,cAAc,CAAC;AAWtB,OAAO,EAAE,YAAY,EAA8B,MAAM,kBAAkB,CAAC;AAO5E,eAAO,MAAM,gBAAgB,+CAA+C,CAAC;AAI7E,wBAAsB,mBAAmB,IAAI,OAAO,CAAC,UAAU,CAAC,CAgB/D;AAED,UAAU,4BAA4B;IACpC,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,OAAO,CAAC;IAClB,cAAc,EAAE,oBAAoB,CAAC;IACrC,YAAY,EAAE,YAAY,CAAC;IAC3B,MAAM,EAAE,0BAA0B,CAAC;IACnC,eAAe,EAAE,cAAc,EAAE,CAAC;IAClC,0BAA0B,EAAE,OAAO,CAAC;IACpC,0BAA0B,EAAE,OAAO,CAAC;IACpC,mBAAmB,EAAE,OAAO,CAAC;IAC7B,4BAA4B,EAAE,OAAO,CAAC;IAEtC,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,sBAAsB,EAAE,OAAO,CAAC;IAChC,aAAa,EAAE,OAAO,CAAC;CACxB;AAWD,qBAAa,kBACX,SAAQ,YACR,YAAW,eAAe;IAQxB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAE9B,OAAO,CAAC,KAAK;IAGb,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAbtC,OAAO,CAAC,kBAAkB,CAAK;IAG/B,OAAO,CAAC,qBAAqB,CAAC,CAAuB;IAErD,OAAO;WAaa,MAAM,CACxB,MAAM,EAAE,4BAA4B,EACpC,YAAY,EAAE,YAAY,EAC1B,aAAa,CAAC,EAAE,wBAAwB,GACvC,OAAO,CAAC,kBAAkB,CAAC;IAuLjB,OAAO,CAAC,IAAI,EAAE,gBAAgB,GAAG,OAAO,CAAC,OAAO,CAAC;YAiJhD,qBAAqB;YAerB,MAAM;YA2CN,wBAAwB;YAexB,kBAAkB;IAIhC,OAAO,CAAC,iBAAiB;IASzB,OAAO,CAAC,4BAA4B;IAOpC,OAAO,CAAC,6BAA6B;CAWtC;AAQD,wBAAsB,4BAA4B,CAChD,4BAA4B,EAAE,4BAA4B,EAC1D,YAAY,EAAE,YAAY,EAC1B,SAAS,CAAC,EAAE,SAAS,GACpB,OAAO,CAAC,eAAe,CAAC,CAY1B"} +\ No newline at end of file ++{"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../../src/internal/hardhat-network/provider/provider.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EACV,SAAS,EAGT,eAAe,EAEf,0BAA0B,EAC1B,gBAAgB,EACjB,MAAM,gBAAgB,CAAC;AAExB,OAAO,KAAK,EACV,UAAU,EAKV,wBAAwB,EAGzB,MAAM,sBAAsB,CAAC;AAK9B,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAoCtC,OAAO,EACL,UAAU,EACV,cAAc,EACd,oBAAoB,EACpB,YAAY,EACb,MAAM,cAAc,CAAC;AAUtB,OAAO,EAAE,YAAY,EAA8B,MAAM,kBAAkB,CAAC;AAO5E,eAAO,MAAM,gBAAgB,+CAA+C,CAAC;AAI7E,wBAAsB,mBAAmB,IAAI,OAAO,CAAC,UAAU,CAAC,CAgB/D;AAED,UAAU,4BAA4B;IACpC,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,OAAO,CAAC;IAClB,cAAc,EAAE,oBAAoB,CAAC;IACrC,YAAY,EAAE,YAAY,CAAC;IAC3B,MAAM,EAAE,0BAA0B,CAAC;IACnC,eAAe,EAAE,cAAc,EAAE,CAAC;IAClC,0BAA0B,EAAE,OAAO,CAAC;IACpC,0BAA0B,EAAE,OAAO,CAAC;IACpC,mBAAmB,EAAE,OAAO,CAAC;IAC7B,4BAA4B,EAAE,OAAO,CAAC;IAEtC,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,sBAAsB,EAAE,OAAO,CAAC;IAChC,aAAa,EAAE,OAAO,CAAC;CACxB;AAWD,qBAAa,kBACX,SAAQ,YACR,YAAW,eAAe;IAQxB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAE9B,OAAO,CAAC,KAAK;IAGb,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAbtC,OAAO,CAAC,kBAAkB,CAAK;IAG/B,OAAO,CAAC,qBAAqB,CAAC,CAAuB;IAErD,OAAO;WAaa,MAAM,CACxB,MAAM,EAAE,4BAA4B,EACpC,YAAY,EAAE,YAAY,EAC1B,aAAa,CAAC,EAAE,wBAAwB,GACvC,OAAO,CAAC,kBAAkB,CAAC;IAuLjB,OAAO,CAAC,IAAI,EAAE,gBAAgB,GAAG,OAAO,CAAC,OAAO,CAAC;YA4IhD,qBAAqB;YAerB,MAAM;YA2CN,wBAAwB;YAexB,kBAAkB;IAIhC,OAAO,CAAC,iBAAiB;IASzB,OAAO,CAAC,4BAA4B;IAOpC,OAAO,CAAC,6BAA6B;CAWtC;AAQD,wBAAsB,4BAA4B,CAChD,4BAA4B,EAAE,4BAA4B,EAC1D,YAAY,EAAE,YAAY,EAC1B,SAAS,CAAC,EAAE,SAAS,GACpB,OAAO,CAAC,eAAe,CAAC,CAY1B"} +\ No newline at end of file +diff --git a/internal/hardhat-network/provider/provider.js b/internal/hardhat-network/provider/provider.js +index be23703ca093b3a54df4c30eb44a184544d3c759..b349f54544fd6089c93b5c4b752d85e4120c11cb 100644 +--- a/internal/hardhat-network/provider/provider.js ++++ b/internal/hardhat-network/provider/provider.js +@@ -308,10 +308,6 @@ class EdrProviderWrapper extends events_1.EventEmitter { + if (args.method === "web3_clientVersion") { + return clientVersion(response.result); + } +- else if (args.method === "debug_traceTransaction" || +- args.method === "debug_traceCall") { +- return (0, convertToEdr_1.edrRpcDebugTraceToHardhat)(response.result); +- } + else { + return response.result; + } +diff --git a/internal/hardhat-network/provider/provider.js.map b/internal/hardhat-network/provider/provider.js.map +index e2b6367cfb28ed774d942dc9586042cf9df8643a..46e1366106ef77aaa7029c067658cbffbb192ec0 100644 +--- a/internal/hardhat-network/provider/provider.js.map ++++ b/internal/hardhat-network/provider/provider.js.map +@@ -1 +1 @@ +-{"version":3,"file":"provider.js","sourceRoot":"","sources":["../../../src/internal/hardhat-network/provider/provider.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,2CAAoD;AACpD,8CAA6E;AAC7E,4DAAoC;AACpC,kDAA0B;AAC1B,mCAAsC;AACtC,wDAA+B;AAC/B,yCAA2B;AAE3B,qDAA8D;AAC9D,+CAGyB;AACzB,oEAA0E;AAC1E,oFAGwD;AACxD,8DAG6C;AAC7C,0EAA2E;AAC3E,wDAKqC;AACrC,oDAA4D;AAC5D,oDAI8B;AAC9B,iEAA8D;AAC9D,qEAA2E;AAG3E,wDAAwD;AAOxD,uDAS8B;AAC9B,6CAA4E;AAC5E,gDAA8E;AAE9E,MAAM,GAAG,GAAG,IAAA,eAAK,EAAC,uCAAuC,CAAC,CAAC;AAE3D,+EAA+E;AAElE,QAAA,gBAAgB,GAAG,4CAA4C,CAAC;AAC7E,IAAI,iBAAyC,CAAC;AAE9C,0CAA0C;AACnC,KAAK,UAAU,mBAAmB;IACvC,MAAM,EAAE,UAAU,EAAE,kBAAkB,EAAE,2BAA2B,EAAE,GACnE,IAAA,6BAAmB,EACjB,sBAAsB,CACkB,CAAC;IAE7C,IAAI,iBAAiB,KAAK,SAAS,EAAE;QACnC,+BAA+B;QAC/B,iBAAiB,GAAG,IAAI,UAAU,EAAE,CAAC;QACrC,MAAM,iBAAiB,CAAC,uBAAuB,CAC7C,kBAAkB,EAClB,2BAA2B,EAAE,CAC9B,CAAC;KACH;IAED,OAAO,iBAAiB,CAAC;AAC3B,CAAC;AAhBD,kDAgBC;AA2BD,MAAM,uBAAwB,SAAQ,qBAAY;CAAG;AASrD,MAAa,kBACX,SAAQ,qBAAY;IAQpB,YACU,SAAuB,EACd,eAA+B,EAC/B,aAA8B;IAC/C,8EAA8E;IACtE,KAEP,EACgB,mBAAuC;QAExD,KAAK,EAAE,CAAC;QATA,cAAS,GAAT,SAAS,CAAc;QACd,oBAAe,GAAf,eAAe,CAAgB;QAC/B,kBAAa,GAAb,aAAa,CAAiB;QAEvC,UAAK,GAAL,KAAK,CAEZ;QACgB,wBAAmB,GAAnB,mBAAmB,CAAoB;QAblD,uBAAkB,GAAG,CAAC,CAAC;IAgB/B,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAM,CACxB,MAAoC,EACpC,YAA0B,EAC1B,aAAwC;QAExC,MAAM,EAAE,kBAAkB,EAAE,cAAc,EAAE,oBAAoB,EAAE,GAChE,IAAA,6BAAmB,EACjB,sBAAsB,CACkB,CAAC;QAE7C,MAAM,QAAQ,GAAG,MAAM,CAAC,QAAQ,IAAI,wBAAgB,CAAC;QAErD,IAAI,IAAI,CAAC;QACT,IAAI,MAAM,CAAC,UAAU,KAAK,SAAS,EAAE;YACnC,IAAI,GAAG;gBACL,WAAW,EACT,MAAM,CAAC,UAAU,CAAC,WAAW,KAAK,SAAS;oBACzC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC;oBACvC,CAAC,CAAC,SAAS;gBACf,QAAQ,EAAE,MAAM,CAAC,aAAa;gBAC9B,cAAc,EAAE,KAAK,CAAC,IAAI,CACxB,MAAM,CAAC,MAAM,EACb,CAAC,CAAC,OAAO,EAAE,cAAc,CAAC,EAAE,EAAE;oBAC5B,OAAO;wBACL,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC;wBACxB,IAAI,EAAE,SAAS;wBACf,SAAS,EAAE,KAAK,CAAC,IAAI,CACnB,cAAc,CAAC,eAAe,EAC9B,CAAC,CAAC,QAAQ,EAAE,WAAW,CAAC,EAAE,EAAE;4BAC1B,OAAO;gCACL,SAAS,EAAE,EAAE,WAAW,EAAE,MAAM,CAAC,WAAW,CAAC,EAAE;gCAC/C,QAAQ,EAAE,IAAA,6CAA8B,EACtC,IAAA,2BAAe,EAAC,QAAQ,CAAC,CAC1B;6BACF,CAAC;wBACJ,CAAC,CACF;qBACF,CAAC;gBACJ,CAAC,CACF;gBACD,WAAW,EAAE,IAAA,+BAAgB,EAAC,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC;gBAC5D,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC,UAAU;aAClC,CAAC;SACH;QAED,MAAM,WAAW,GACf,MAAM,CAAC,WAAW,KAAK,SAAS;YAC9B,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,WAAW,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,CAAC;YACzD,CAAC,CAAC,SAAS,CAAC;QAEhB,6EAA6E;QAC7E,0DAA0D;QAC1D,MAAM,YAAY,GAAG,IAAI,uBAAuB,EAAE,CAAC;QAEnD,MAAM,WAAW,GAAG,YAAY,CAAC,WAAW,IAAI,kBAAS,CAAC;QAC1D,MAAM,iBAAiB,GAAG,YAAY,CAAC,iBAAiB,IAAI,wBAAe,CAAC;QAE5E,MAAM,YAAY,GAAG,IAAA,2BAAe,EAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QAEtD,MAAM,YAAY,GAChB,IAAI,KAAK,SAAS;YAChB,CAAC,CAAC,EAAE,CAAC,sFAAsF;YAC3F,CAAC,CAAC,cAAc,CACZ,oBAAoB,CAAC,IAAA,6CAA8B,EAAC,YAAY,CAAC,CAAC,CACnE,CAAC;QAER,MAAM,aAAa,GAAG,MAAM,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE;YAC3D,MAAM,UAAU,GAAG,UAAU,CAAC,IAAI;YAChC,wBAAwB;YACxB,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAChD,CAAC;YAEF,YAAY,CAAC,IAAI,CAAC;gBAChB,OAAO,EAAE,IAAA,uBAAgB,EAAC,UAAU,CAAC;gBACrC,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC;gBAChC,IAAI,EAAE,IAAI,UAAU,EAAE,EAAE,sEAAsE;aAC/F,CAAC,CAAC;YAEH,OAAO,OAAO,CAAC,UAAU,CAAC;QAC5B,CAAC,CAAC,CAAC;QAEH,MAAM,mBAAmB,GAAG,MAAM,CAAC,aAAa;YAC9C,CAAC,CAAC,IAAA,uBAAW,EAAC,YAAY,EAAE,wBAAY,CAAC,KAAK,CAAC;gBAC7C,CAAC,CAAC,EAAE,CAAC,8CAA8C;gBACnD,CAAC,CAAC,CAAC,IAAA,0BAAoB,GAAE,CAAC;YAC5B,CAAC,CAAC,EAAE,CAAC;QAEP,MAAM,iBAAiB,GAAG;YACxB,4BAA4B,EAC1B,MAAM,CAAC,4BAA4B,IAAI,KAAK;YAC9C,0BAA0B,EAAE,MAAM,CAAC,0BAA0B;YAC7D,iBAAiB,EAAE,MAAM,CAAC,mBAAmB;YAC7C,wBAAwB,EAAE,MAAM,CAAC,0BAA0B;YAC3D,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC;YAC3C,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;YAC/B,QAAQ,EAAE,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC;YAC/C,mBAAmB;YACnB,IAAI;YACJ,YAAY;YACZ,QAAQ,EAAE,IAAA,6CAA8B,EAAC,YAAY,CAAC;YACtD,WAAW;YACX,oBAAoB,EAClB,MAAM,CAAC,oBAAoB,KAAK,SAAS;gBACvC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,oBAAqB,CAAC;gBACtC,CAAC,CAAC,SAAS;YACf,WAAW,EAAE,MAAM,CAAC,WAAW;YAC/B,MAAM,EAAE;gBACN,QAAQ,EAAE,MAAM,CAAC,QAAQ;gBACzB,QAAQ,EAAE,IAAA,kDAAmC,EAAC,MAAM,CAAC,cAAc,CAAC;gBACpE,OAAO,EAAE;oBACP,KAAK,EAAE,IAAA,sDAAuC,EAAC,MAAM,CAAC,YAAY,CAAC;iBACpE;aACF;YACD,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC;YACnC,aAAa,EAAE,EAAE;YACjB,aAAa;YACb,gEAAgE;YAChE,2CAA2C;YAC3C,qEAAqE;YACrE,+HAA+H;YAC/H,yDAAyD;YACzD,kEAAkE;YAClE,gBAAgB;YAChB,iBAAiB,EACf,MAAM,CAAC,aAAa,KAAK,gBAAgB;gBACvC,CAAC,CAAC,MAAM,CAAC,eAAe,CAAC;gBACzB,CAAC,CAAC,SAAS;SAChB,CAAC;QAEF,MAAM,eAAe,GAAG;YACtB,MAAM,EAAE,YAAY,CAAC,OAAO;YAC5B,8BAA8B,EAAE,CAAC,MAAqB,EAAE,EAAE;gBACxD,OAAO,6BAAa,CAAC,cAAc,CACjC,MAAM,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE;oBACnB,OAAO,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBAC5B,CAAC,CAAC,CACH,CAAC;YACJ,CAAC;YACD,iBAAiB,EAAE,CAAC,OAAe,EAAE,OAAgB,EAAE,EAAE;gBACvD,IAAI,OAAO,EAAE;oBACX,iBAAiB,CAAC,OAAO,CAAC,CAAC;iBAC5B;qBAAM;oBACL,WAAW,CAAC,OAAO,CAAC,CAAC;iBACtB;YACH,CAAC;SACF,CAAC;QAEF,MAAM,qBAAqB,GAAG;YAC5B,oBAAoB,EAAE,CAAC,KAAwB,EAAE,EAAE;gBACjD,YAAY,CAAC,IAAI,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;YACvC,CAAC;SACF,CAAC;QAEF,MAAM,gBAAgB,GAAG,aAAa,IAAI,EAAE,CAAC;QAE7C,MAAM,eAAe,GAAG,qBAAe,CAAC,aAAa,CAAC,gBAAgB,CAAC,CAAC;QAExE,MAAM,OAAO,GAAG,MAAM,mBAAmB,EAAE,CAAC;QAC5C,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,cAAc,CAC3C,kBAAkB,EAClB,iBAAiB,EACjB,eAAe,EACf,qBAAqB,EACrB,eAAe,CAChB,CAAC;QAEF,MAAM,qBAAqB,GAAG;YAC5B,GAAG,EAAE,IAAA,mCAAsB,EAAC,QAAQ,CAAC;SACtC,CAAC;QAEF,MAAM,OAAO,GAAG,IAAI,kBAAkB,CACpC,QAAQ,EACR,iBAAiB,EACjB,eAAe,EACf,qBAAqB,EACrB,qBAAqB,CACtB,CAAC;QAEF,4CAA4C;QAC5C,YAAY,CAAC,WAAW,CACtB,UAAU,EACV,OAAO,CAAC,iBAAiB,CAAC,IAAI,CAAC,OAAO,CAAC,CACxC,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAEM,KAAK,CAAC,OAAO,CAAC,IAAsB;QACzC,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE;YAC5D,MAAM,IAAI,0BAAiB,CACzB,mEAAmE,CACpE,CAAC;SACH;QAED,MAAM,MAAM,GAAG,IAAI,CAAC,MAAM,IAAI,EAAE,CAAC;QAEjC,sCAAsC;QACtC,QAAQ,IAAI,CAAC,MAAM,EAAE;YACnB,KAAK,oCAAoC;gBACvC,OAAO,CAAC,CAAC;YACX,KAAK,YAAY;gBACf,OAAO,KAAK,CAAC;YACf,KAAK,eAAe;gBAClB,OAAO,IAAI,CAAC;YACd,KAAK,eAAe;gBAClB,OAAO,IAAA,gCAAmB,EAAC,CAAC,CAAC,CAAC;YAChC,KAAK,eAAe;gBAClB,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,YAAY,CAAC,MAAM,CAAC,CAAC,CAAC;YAC9C,KAAK,8BAA8B;gBACjC,OAAO,IAAI,CAAC,qBAAqB,CAC/B,GAAG,2BAA2B,CAAC,MAAM,CAAC,CACvC,CAAC;SACL;QAED,MAAM,eAAe,GAAG,IAAI,CAAC,SAAS,CAAC;YACrC,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,MAAM;SACP,CAAC,CAAC;QAEH,MAAM,cAAc,GAAa,MAAM,IAAI,CAAC,SAAS,CAAC,aAAa,CACjE,eAAe,CAChB,CAAC;QAEF,IAAI,QAAQ,CAAC;QACb,IAAI,OAAO,cAAc,CAAC,IAAI,KAAK,QAAQ,EAAE;YAC3C,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;SAC5C;aAAM;YACL,QAAQ,GAAG,cAAc,CAAC,IAAI,CAAC;SAChC;QAED,MAAM,WAAW,GACf,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,MAAM,GAAG,CAAC;YACjD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC;QAEhD,IAAI,WAAW,EAAE;YACf,MAAM,SAAS,GAAG,cAAc,CAAC,MAAM,CAAC;YACxC,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE;gBAChC,0EAA0E;gBAC1E,MAAM,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;gBAE7B,iBAAiB;gBACjB,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;oBACvD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;iBACxC;gBAED,KAAK,MAAM,SAAS,IAAI,KAAK,EAAE;oBAC7B,aAAa;oBACb,IAAI,IAAI,IAAI,SAAS,EAAE;wBACrB,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;4BACvD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAC5B,MAAM,EACN,IAAA,qDAAsC,EAAC,SAAS,CAAC,CAClD,CAAC;yBACH;qBACF;oBACD,qBAAqB;yBAChB,IAAI,iBAAiB,IAAI,SAAS,EAAE;wBACvC,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,cAAc,CAAC,GAAG,CAAC,EAAE;4BAC/D,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAC5B,cAAc,EACd,IAAA,wDAAyC,EAAC,SAAS,CAAC,CACrD,CAAC;yBACH;qBACF;oBACD,sBAAsB;yBACjB;wBACH,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,eAAe,CAAC,GAAG,CAAC,EAAE;4BAChE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAC5B,eAAe,EACf,IAAA,gDAAiC,EAAC,SAAS,CAAC,CAC7C,CAAC;yBACH;qBACF;iBACF;gBAED,gBAAgB;gBAChB,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE;oBACtD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;iBACvC;aACF;SACF;QAED,IAAI,IAAA,sBAAe,EAAC,QAAQ,CAAC,EAAE;YAC7B,IAAI,KAAK,CAAC;YAEV,IAAI,UAAU,GAA8B,IAAI,CAAC;YACjD,IAAI;gBACF,UAAU,GAAG,cAAc,CAAC,UAAU,EAAE,CAAC;aAC1C;YAAC,OAAO,CAAC,EAAE;gBACV,GAAG,CAAC,+BAA+B,EAAE,CAAC,CAAC,CAAC;aACzC;YAED,IAAI,UAAU,KAAK,IAAI,EAAE;gBACvB,KAAK,GAAG,IAAA,0CAAwB,EAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC;gBACrE,yDAAyD;gBACxD,KAAa,CAAC,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,IAAI,SAAS,CAAC;gBAC5D,KAAa,CAAC,eAAe;oBAC5B,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,eAAe,IAAI,SAAS,CAAC;aACrD;iBAAM;gBACL,IAAI,QAAQ,CAAC,KAAK,CAAC,IAAI,KAAK,8BAAqB,CAAC,IAAI,EAAE;oBACtD,KAAK,GAAG,IAAI,8BAAqB,CAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;iBAC3D;qBAAM;oBACL,KAAK,GAAG,IAAI,sBAAa,CACvB,QAAQ,CAAC,KAAK,CAAC,OAAO,EACtB,QAAQ,CAAC,KAAK,CAAC,IAAI,CACpB,CAAC;iBACH;gBACD,KAAK,CAAC,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC;aAClC;YAED,sFAAsF;YACtF,MAAM,KAAK,CAAC;SACb;QAED,IAAI,IAAI,CAAC,MAAM,KAAK,YAAY,EAAE;YAChC,IAAI,CAAC,IAAI,CAAC,iDAAqC,CAAC,CAAC;SAClD;QAED,4EAA4E;QAC5E,8DAA8D;QAC9D,IAAI,IAAI,CAAC,MAAM,KAAK,oBAAoB,EAAE;YACxC,OAAO,aAAa,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;SACvC;aAAM,IACL,IAAI,CAAC,MAAM,KAAK,wBAAwB;YACxC,IAAI,CAAC,MAAM,KAAK,iBAAiB,EACjC;YACA,OAAO,IAAA,wCAAyB,EAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;SACnD;aAAM;YACL,OAAO,QAAQ,CAAC,MAAM,CAAC;SACxB;IACH,CAAC;IAEO,KAAK,CAAC,qBAAqB,CACjC,WAAmB,EACnB,KAAoB,EACpB,MAAsB;QAEtB,IAAI;YACF,MAAM,IAAI,CAAC,SAAS,CAAC,oBAAoB,CAAC,WAAW,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;YAEtE,OAAO,IAAI,CAAC;SACb;QAAC,OAAO,KAAU,EAAE;YACnB,sFAAsF;YACtF,MAAM,IAAI,sBAAa,CAAC,KAAK,CAAC,CAAC;SAChC;IACH,CAAC;IAEO,KAAK,CAAC,MAAM,CAAC,aAAuC;QAC1D,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAA,6BAAmB,EAChD,sBAAsB,CACkB,CAAC;QAC3C,MAAM,UAAU,GAAG,aAAa,EAAE,OAAO,CAAC;QAE1C,IAAI,UAAU,KAAK,SAAS,EAAE;YAC5B,IAAI,CAAC,eAAe,CAAC,IAAI,GAAG;gBAC1B,WAAW,EACT,UAAU,CAAC,WAAW,KAAK,SAAS;oBAClC,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC;oBAChC,CAAC,CAAC,SAAS;gBACf,QAAQ,EAAE,IAAI,CAAC,eAAe,CAAC,IAAI,EAAE,QAAQ;gBAC7C,cAAc,EAAE,IAAI,CAAC,eAAe,CAAC,IAAI,EAAE,cAAc;gBACzD,WAAW,EAAE,IAAA,+BAAgB,EAAC,UAAU,CAAC,WAAW,CAAC;gBACrD,GAAG,EAAE,UAAU,CAAC,UAAU;aAC3B,CAAC;SACH;aAAM;YACL,IAAI,CAAC,eAAe,CAAC,IAAI,GAAG,SAAS,CAAC;SACvC;QAED,MAAM,OAAO,GAAG,MAAM,mBAAmB,EAAE,CAAC;QAC5C,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,cAAc,CAC3C,kBAAkB,EAClB,IAAI,CAAC,eAAe,EACpB,IAAI,CAAC,aAAa,EAClB,IAAI,CAAC,mBAAmB,EACxB,IAAI,CAAC,SAAS,CAAC,eAAe,EAAE,CACjC,CAAC;QAEF,MAAM,qBAAqB,GAAG;YAC5B,GAAG,EAAE,IAAA,mCAAsB,EAAC,QAAQ,CAAC;SACtC,CAAC;QAEF,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;QAC1B,IAAI,CAAC,KAAK,GAAG,qBAAqB,CAAC;QAEnC,IAAI,CAAC,IAAI,CAAC,uCAA2B,CAAC,CAAC;QAEvC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,mDAAmD;IAC3C,KAAK,CAAC,wBAAwB,CACpC,QAA8B;QAE9B,IAAI,CAAC,qBAAqB,GAAG,QAAQ,CAAC;QAEtC,MAAM,IAAI,CAAC,SAAS,CAAC,uBAAuB,CAC1C,KAAK,EAAE,OAAoB,EAAE,IAAiB,EAAE,EAAE;YAChD,OAAO,IAAI,CAAC,qBAAqB,EAAE,CACjC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,EACpB,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAClB,CAAC;QACJ,CAAC,CACF,CAAC;IACJ,CAAC;IAEO,KAAK,CAAC,kBAAkB,CAAC,OAAgB;QAC/C,MAAM,IAAI,CAAC,SAAS,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC;IAClD,CAAC;IAEO,iBAAiB,CAAC,KAAwB;QAChD,MAAM,YAAY,GAAG,KAAK,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE,CAAC;QACxD,MAAM,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAC5E,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE;YAC5B,IAAI,CAAC,4BAA4B,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;YACxD,IAAI,CAAC,6BAA6B,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;SAC1D;IACH,CAAC;IAEO,4BAA4B,CAAC,YAAoB,EAAE,MAAW;QACpE,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE;YACxB,YAAY;YACZ,MAAM;SACP,CAAC,CAAC;IACL,CAAC;IAEO,6BAA6B,CAAC,YAAoB,EAAE,MAAe;QACzE,MAAM,OAAO,GAAoB;YAC/B,IAAI,EAAE,kBAAkB;YACxB,IAAI,EAAE;gBACJ,YAAY;gBACZ,MAAM;aACP;SACF,CAAC;QAEF,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IAChC,CAAC;CACF;AA1cD,gDA0cC;AAED,KAAK,UAAU,aAAa,CAAC,gBAAwB;IACnD,MAAM,cAAc,GAAG,MAAM,IAAA,4BAAc,GAAE,CAAC;IAC9C,MAAM,UAAU,GAAG,gBAAgB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAClD,OAAO,kBAAkB,cAAc,CAAC,OAAO,yBAAyB,UAAU,EAAE,CAAC;AACvF,CAAC;AAEM,KAAK,UAAU,4BAA4B,CAChD,4BAA0D,EAC1D,YAA0B,EAC1B,SAAqB;IAErB,GAAG,CAAC,uBAAuB,CAAC,CAAC;IAC7B,MAAM,aAAa,GAAG,MAAM,iBAAiB,CAAC,SAAS,CAAC,CAAC;IACzD,GAAG,CAAC,uBAAuB,CAAC,CAAC;IAC7B,MAAM,QAAQ,GAAG,MAAM,kBAAkB,CAAC,MAAM,CAC9C,4BAA4B,EAC5B,YAAY,EACZ,aAAa,CACd,CAAC;IACF,GAAG,CAAC,sBAAsB,CAAC,CAAC;IAE5B,OAAO,QAAQ,CAAC;AAClB,CAAC;AAhBD,oEAgBC;AAED,KAAK,UAAU,iBAAiB,CAC9B,SAAgC;IAEhC,IAAI,SAAS,KAAK,SAAS,EAAE;QAC3B,MAAM,cAAc,GAAG,MAAM,SAAS,CAAC,iBAAiB,EAAE,CAAC;QAE3D,IAAI;YACF,MAAM,UAAU,GAAG,MAAM,OAAO,CAAC,GAAG,CAClC,cAAc,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,kBAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAC7D,CAAC;YAEF,OAAO;gBACL,UAAU;aACX,CAAC;SACH;QAAC,OAAO,KAAK,EAAE;YACd,OAAO,CAAC,IAAI,CACV,oBAAU,CAAC,MAAM,CACf,yFAAyF,CAC1F,CACF,CAAC;YAEF,GAAG,CACD,gIAAgI,EAChI,KAAK,CACN,CAAC;SACH;KACF;AACH,CAAC;AAED,SAAS,2BAA2B,CAClC,MAAa;IAEb,OAAO,IAAA,2BAAc,EAAC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,uBAAgB,EAAE,wBAAiB,CAAC,CAAC;AAC/E,CAAC;AAED,SAAS,YAAY,CAAC,MAAa;IACjC,OAAO,IAAA,2BAAc,EAAC,MAAM,EAAE,iDAA+B,CAAC,CAAC;AACjE,CAAC"} +\ No newline at end of file ++{"version":3,"file":"provider.js","sourceRoot":"","sources":["../../../src/internal/hardhat-network/provider/provider.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,2CAAoD;AACpD,8CAA6E;AAC7E,4DAAoC;AACpC,kDAA0B;AAC1B,mCAAsC;AACtC,wDAA+B;AAC/B,yCAA2B;AAE3B,qDAA8D;AAC9D,+CAGyB;AACzB,oEAA0E;AAC1E,oFAGwD;AACxD,8DAG6C;AAC7C,0EAA2E;AAC3E,wDAKqC;AACrC,oDAA4D;AAC5D,oDAI8B;AAC9B,iEAA8D;AAC9D,qEAA2E;AAG3E,wDAAwD;AAOxD,uDAQ8B;AAC9B,6CAA4E;AAC5E,gDAA8E;AAE9E,MAAM,GAAG,GAAG,IAAA,eAAK,EAAC,uCAAuC,CAAC,CAAC;AAE3D,+EAA+E;AAElE,QAAA,gBAAgB,GAAG,4CAA4C,CAAC;AAC7E,IAAI,iBAAyC,CAAC;AAE9C,0CAA0C;AACnC,KAAK,UAAU,mBAAmB;IACvC,MAAM,EAAE,UAAU,EAAE,kBAAkB,EAAE,2BAA2B,EAAE,GACnE,IAAA,6BAAmB,EACjB,sBAAsB,CACkB,CAAC;IAE7C,IAAI,iBAAiB,KAAK,SAAS,EAAE;QACnC,+BAA+B;QAC/B,iBAAiB,GAAG,IAAI,UAAU,EAAE,CAAC;QACrC,MAAM,iBAAiB,CAAC,uBAAuB,CAC7C,kBAAkB,EAClB,2BAA2B,EAAE,CAC9B,CAAC;KACH;IAED,OAAO,iBAAiB,CAAC;AAC3B,CAAC;AAhBD,kDAgBC;AA2BD,MAAM,uBAAwB,SAAQ,qBAAY;CAAG;AASrD,MAAa,kBACX,SAAQ,qBAAY;IAQpB,YACU,SAAuB,EACd,eAA+B,EAC/B,aAA8B;IAC/C,8EAA8E;IACtE,KAEP,EACgB,mBAAuC;QAExD,KAAK,EAAE,CAAC;QATA,cAAS,GAAT,SAAS,CAAc;QACd,oBAAe,GAAf,eAAe,CAAgB;QAC/B,kBAAa,GAAb,aAAa,CAAiB;QAEvC,UAAK,GAAL,KAAK,CAEZ;QACgB,wBAAmB,GAAnB,mBAAmB,CAAoB;QAblD,uBAAkB,GAAG,CAAC,CAAC;IAgB/B,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAM,CACxB,MAAoC,EACpC,YAA0B,EAC1B,aAAwC;QAExC,MAAM,EAAE,kBAAkB,EAAE,cAAc,EAAE,oBAAoB,EAAE,GAChE,IAAA,6BAAmB,EACjB,sBAAsB,CACkB,CAAC;QAE7C,MAAM,QAAQ,GAAG,MAAM,CAAC,QAAQ,IAAI,wBAAgB,CAAC;QAErD,IAAI,IAAI,CAAC;QACT,IAAI,MAAM,CAAC,UAAU,KAAK,SAAS,EAAE;YACnC,IAAI,GAAG;gBACL,WAAW,EACT,MAAM,CAAC,UAAU,CAAC,WAAW,KAAK,SAAS;oBACzC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC;oBACvC,CAAC,CAAC,SAAS;gBACf,QAAQ,EAAE,MAAM,CAAC,aAAa;gBAC9B,cAAc,EAAE,KAAK,CAAC,IAAI,CACxB,MAAM,CAAC,MAAM,EACb,CAAC,CAAC,OAAO,EAAE,cAAc,CAAC,EAAE,EAAE;oBAC5B,OAAO;wBACL,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC;wBACxB,IAAI,EAAE,SAAS;wBACf,SAAS,EAAE,KAAK,CAAC,IAAI,CACnB,cAAc,CAAC,eAAe,EAC9B,CAAC,CAAC,QAAQ,EAAE,WAAW,CAAC,EAAE,EAAE;4BAC1B,OAAO;gCACL,SAAS,EAAE,EAAE,WAAW,EAAE,MAAM,CAAC,WAAW,CAAC,EAAE;gCAC/C,QAAQ,EAAE,IAAA,6CAA8B,EACtC,IAAA,2BAAe,EAAC,QAAQ,CAAC,CAC1B;6BACF,CAAC;wBACJ,CAAC,CACF;qBACF,CAAC;gBACJ,CAAC,CACF;gBACD,WAAW,EAAE,IAAA,+BAAgB,EAAC,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC;gBAC5D,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC,UAAU;aAClC,CAAC;SACH;QAED,MAAM,WAAW,GACf,MAAM,CAAC,WAAW,KAAK,SAAS;YAC9B,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,WAAW,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,CAAC;YACzD,CAAC,CAAC,SAAS,CAAC;QAEhB,6EAA6E;QAC7E,0DAA0D;QAC1D,MAAM,YAAY,GAAG,IAAI,uBAAuB,EAAE,CAAC;QAEnD,MAAM,WAAW,GAAG,YAAY,CAAC,WAAW,IAAI,kBAAS,CAAC;QAC1D,MAAM,iBAAiB,GAAG,YAAY,CAAC,iBAAiB,IAAI,wBAAe,CAAC;QAE5E,MAAM,YAAY,GAAG,IAAA,2BAAe,EAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QAEtD,MAAM,YAAY,GAChB,IAAI,KAAK,SAAS;YAChB,CAAC,CAAC,EAAE,CAAC,sFAAsF;YAC3F,CAAC,CAAC,cAAc,CACZ,oBAAoB,CAAC,IAAA,6CAA8B,EAAC,YAAY,CAAC,CAAC,CACnE,CAAC;QAER,MAAM,aAAa,GAAG,MAAM,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE;YAC3D,MAAM,UAAU,GAAG,UAAU,CAAC,IAAI;YAChC,wBAAwB;YACxB,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAChD,CAAC;YAEF,YAAY,CAAC,IAAI,CAAC;gBAChB,OAAO,EAAE,IAAA,uBAAgB,EAAC,UAAU,CAAC;gBACrC,OAAO,EAAE,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC;gBAChC,IAAI,EAAE,IAAI,UAAU,EAAE,EAAE,sEAAsE;aAC/F,CAAC,CAAC;YAEH,OAAO,OAAO,CAAC,UAAU,CAAC;QAC5B,CAAC,CAAC,CAAC;QAEH,MAAM,mBAAmB,GAAG,MAAM,CAAC,aAAa;YAC9C,CAAC,CAAC,IAAA,uBAAW,EAAC,YAAY,EAAE,wBAAY,CAAC,KAAK,CAAC;gBAC7C,CAAC,CAAC,EAAE,CAAC,8CAA8C;gBACnD,CAAC,CAAC,CAAC,IAAA,0BAAoB,GAAE,CAAC;YAC5B,CAAC,CAAC,EAAE,CAAC;QAEP,MAAM,iBAAiB,GAAG;YACxB,4BAA4B,EAC1B,MAAM,CAAC,4BAA4B,IAAI,KAAK;YAC9C,0BAA0B,EAAE,MAAM,CAAC,0BAA0B;YAC7D,iBAAiB,EAAE,MAAM,CAAC,mBAAmB;YAC7C,wBAAwB,EAAE,MAAM,CAAC,0BAA0B;YAC3D,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC;YAC3C,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;YAC/B,QAAQ,EAAE,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC;YAC/C,mBAAmB;YACnB,IAAI;YACJ,YAAY;YACZ,QAAQ,EAAE,IAAA,6CAA8B,EAAC,YAAY,CAAC;YACtD,WAAW;YACX,oBAAoB,EAClB,MAAM,CAAC,oBAAoB,KAAK,SAAS;gBACvC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,oBAAqB,CAAC;gBACtC,CAAC,CAAC,SAAS;YACf,WAAW,EAAE,MAAM,CAAC,WAAW;YAC/B,MAAM,EAAE;gBACN,QAAQ,EAAE,MAAM,CAAC,QAAQ;gBACzB,QAAQ,EAAE,IAAA,kDAAmC,EAAC,MAAM,CAAC,cAAc,CAAC;gBACpE,OAAO,EAAE;oBACP,KAAK,EAAE,IAAA,sDAAuC,EAAC,MAAM,CAAC,YAAY,CAAC;iBACpE;aACF;YACD,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC;YACnC,aAAa,EAAE,EAAE;YACjB,aAAa;YACb,gEAAgE;YAChE,2CAA2C;YAC3C,qEAAqE;YACrE,+HAA+H;YAC/H,yDAAyD;YACzD,kEAAkE;YAClE,gBAAgB;YAChB,iBAAiB,EACf,MAAM,CAAC,aAAa,KAAK,gBAAgB;gBACvC,CAAC,CAAC,MAAM,CAAC,eAAe,CAAC;gBACzB,CAAC,CAAC,SAAS;SAChB,CAAC;QAEF,MAAM,eAAe,GAAG;YACtB,MAAM,EAAE,YAAY,CAAC,OAAO;YAC5B,8BAA8B,EAAE,CAAC,MAAqB,EAAE,EAAE;gBACxD,OAAO,6BAAa,CAAC,cAAc,CACjC,MAAM,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE;oBACnB,OAAO,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBAC5B,CAAC,CAAC,CACH,CAAC;YACJ,CAAC;YACD,iBAAiB,EAAE,CAAC,OAAe,EAAE,OAAgB,EAAE,EAAE;gBACvD,IAAI,OAAO,EAAE;oBACX,iBAAiB,CAAC,OAAO,CAAC,CAAC;iBAC5B;qBAAM;oBACL,WAAW,CAAC,OAAO,CAAC,CAAC;iBACtB;YACH,CAAC;SACF,CAAC;QAEF,MAAM,qBAAqB,GAAG;YAC5B,oBAAoB,EAAE,CAAC,KAAwB,EAAE,EAAE;gBACjD,YAAY,CAAC,IAAI,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;YACvC,CAAC;SACF,CAAC;QAEF,MAAM,gBAAgB,GAAG,aAAa,IAAI,EAAE,CAAC;QAE7C,MAAM,eAAe,GAAG,qBAAe,CAAC,aAAa,CAAC,gBAAgB,CAAC,CAAC;QAExE,MAAM,OAAO,GAAG,MAAM,mBAAmB,EAAE,CAAC;QAC5C,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,cAAc,CAC3C,kBAAkB,EAClB,iBAAiB,EACjB,eAAe,EACf,qBAAqB,EACrB,eAAe,CAChB,CAAC;QAEF,MAAM,qBAAqB,GAAG;YAC5B,GAAG,EAAE,IAAA,mCAAsB,EAAC,QAAQ,CAAC;SACtC,CAAC;QAEF,MAAM,OAAO,GAAG,IAAI,kBAAkB,CACpC,QAAQ,EACR,iBAAiB,EACjB,eAAe,EACf,qBAAqB,EACrB,qBAAqB,CACtB,CAAC;QAEF,4CAA4C;QAC5C,YAAY,CAAC,WAAW,CACtB,UAAU,EACV,OAAO,CAAC,iBAAiB,CAAC,IAAI,CAAC,OAAO,CAAC,CACxC,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAEM,KAAK,CAAC,OAAO,CAAC,IAAsB;QACzC,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE;YAC5D,MAAM,IAAI,0BAAiB,CACzB,mEAAmE,CACpE,CAAC;SACH;QAED,MAAM,MAAM,GAAG,IAAI,CAAC,MAAM,IAAI,EAAE,CAAC;QAEjC,sCAAsC;QACtC,QAAQ,IAAI,CAAC,MAAM,EAAE;YACnB,KAAK,oCAAoC;gBACvC,OAAO,CAAC,CAAC;YACX,KAAK,YAAY;gBACf,OAAO,KAAK,CAAC;YACf,KAAK,eAAe;gBAClB,OAAO,IAAI,CAAC;YACd,KAAK,eAAe;gBAClB,OAAO,IAAA,gCAAmB,EAAC,CAAC,CAAC,CAAC;YAChC,KAAK,eAAe;gBAClB,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,YAAY,CAAC,MAAM,CAAC,CAAC,CAAC;YAC9C,KAAK,8BAA8B;gBACjC,OAAO,IAAI,CAAC,qBAAqB,CAC/B,GAAG,2BAA2B,CAAC,MAAM,CAAC,CACvC,CAAC;SACL;QAED,MAAM,eAAe,GAAG,IAAI,CAAC,SAAS,CAAC;YACrC,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,MAAM;SACP,CAAC,CAAC;QAEH,MAAM,cAAc,GAAa,MAAM,IAAI,CAAC,SAAS,CAAC,aAAa,CACjE,eAAe,CAChB,CAAC;QAEF,IAAI,QAAQ,CAAC;QACb,IAAI,OAAO,cAAc,CAAC,IAAI,KAAK,QAAQ,EAAE;YAC3C,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;SAC5C;aAAM;YACL,QAAQ,GAAG,cAAc,CAAC,IAAI,CAAC;SAChC;QAED,MAAM,WAAW,GACf,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,MAAM,GAAG,CAAC;YACjD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC;QAEhD,IAAI,WAAW,EAAE;YACf,MAAM,SAAS,GAAG,cAAc,CAAC,MAAM,CAAC;YACxC,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE;gBAChC,0EAA0E;gBAC1E,MAAM,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC;gBAE7B,iBAAiB;gBACjB,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;oBACvD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;iBACxC;gBAED,KAAK,MAAM,SAAS,IAAI,KAAK,EAAE;oBAC7B,aAAa;oBACb,IAAI,IAAI,IAAI,SAAS,EAAE;wBACrB,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;4BACvD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAC5B,MAAM,EACN,IAAA,qDAAsC,EAAC,SAAS,CAAC,CAClD,CAAC;yBACH;qBACF;oBACD,qBAAqB;yBAChB,IAAI,iBAAiB,IAAI,SAAS,EAAE;wBACvC,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,cAAc,CAAC,GAAG,CAAC,EAAE;4BAC/D,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAC5B,cAAc,EACd,IAAA,wDAAyC,EAAC,SAAS,CAAC,CACrD,CAAC;yBACH;qBACF;oBACD,sBAAsB;yBACjB;wBACH,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,eAAe,CAAC,GAAG,CAAC,EAAE;4BAChE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAC5B,eAAe,EACf,IAAA,gDAAiC,EAAC,SAAS,CAAC,CAC7C,CAAC;yBACH;qBACF;iBACF;gBAED,gBAAgB;gBAChB,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE;oBACtD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;iBACvC;aACF;SACF;QAED,IAAI,IAAA,sBAAe,EAAC,QAAQ,CAAC,EAAE;YAC7B,IAAI,KAAK,CAAC;YAEV,IAAI,UAAU,GAA8B,IAAI,CAAC;YACjD,IAAI;gBACF,UAAU,GAAG,cAAc,CAAC,UAAU,EAAE,CAAC;aAC1C;YAAC,OAAO,CAAC,EAAE;gBACV,GAAG,CAAC,+BAA+B,EAAE,CAAC,CAAC,CAAC;aACzC;YAED,IAAI,UAAU,KAAK,IAAI,EAAE;gBACvB,KAAK,GAAG,IAAA,0CAAwB,EAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC;gBACrE,yDAAyD;gBACxD,KAAa,CAAC,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,IAAI,SAAS,CAAC;gBAC5D,KAAa,CAAC,eAAe;oBAC5B,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,eAAe,IAAI,SAAS,CAAC;aACrD;iBAAM;gBACL,IAAI,QAAQ,CAAC,KAAK,CAAC,IAAI,KAAK,8BAAqB,CAAC,IAAI,EAAE;oBACtD,KAAK,GAAG,IAAI,8BAAqB,CAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;iBAC3D;qBAAM;oBACL,KAAK,GAAG,IAAI,sBAAa,CACvB,QAAQ,CAAC,KAAK,CAAC,OAAO,EACtB,QAAQ,CAAC,KAAK,CAAC,IAAI,CACpB,CAAC;iBACH;gBACD,KAAK,CAAC,IAAI,GAAG,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC;aAClC;YAED,sFAAsF;YACtF,MAAM,KAAK,CAAC;SACb;QAED,IAAI,IAAI,CAAC,MAAM,KAAK,YAAY,EAAE;YAChC,IAAI,CAAC,IAAI,CAAC,iDAAqC,CAAC,CAAC;SAClD;QAED,4EAA4E;QAC5E,8DAA8D;QAC9D,IAAI,IAAI,CAAC,MAAM,KAAK,oBAAoB,EAAE;YACxC,OAAO,aAAa,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;SACvC;aAAM;YACL,OAAO,QAAQ,CAAC,MAAM,CAAC;SACxB;IACH,CAAC;IAEO,KAAK,CAAC,qBAAqB,CACjC,WAAmB,EACnB,KAAoB,EACpB,MAAsB;QAEtB,IAAI;YACF,MAAM,IAAI,CAAC,SAAS,CAAC,oBAAoB,CAAC,WAAW,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;YAEtE,OAAO,IAAI,CAAC;SACb;QAAC,OAAO,KAAU,EAAE;YACnB,sFAAsF;YACtF,MAAM,IAAI,sBAAa,CAAC,KAAK,CAAC,CAAC;SAChC;IACH,CAAC;IAEO,KAAK,CAAC,MAAM,CAAC,aAAuC;QAC1D,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAA,6BAAmB,EAChD,sBAAsB,CACkB,CAAC;QAC3C,MAAM,UAAU,GAAG,aAAa,EAAE,OAAO,CAAC;QAE1C,IAAI,UAAU,KAAK,SAAS,EAAE;YAC5B,IAAI,CAAC,eAAe,CAAC,IAAI,GAAG;gBAC1B,WAAW,EACT,UAAU,CAAC,WAAW,KAAK,SAAS;oBAClC,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC;oBAChC,CAAC,CAAC,SAAS;gBACf,QAAQ,EAAE,IAAI,CAAC,eAAe,CAAC,IAAI,EAAE,QAAQ;gBAC7C,cAAc,EAAE,IAAI,CAAC,eAAe,CAAC,IAAI,EAAE,cAAc;gBACzD,WAAW,EAAE,IAAA,+BAAgB,EAAC,UAAU,CAAC,WAAW,CAAC;gBACrD,GAAG,EAAE,UAAU,CAAC,UAAU;aAC3B,CAAC;SACH;aAAM;YACL,IAAI,CAAC,eAAe,CAAC,IAAI,GAAG,SAAS,CAAC;SACvC;QAED,MAAM,OAAO,GAAG,MAAM,mBAAmB,EAAE,CAAC;QAC5C,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,cAAc,CAC3C,kBAAkB,EAClB,IAAI,CAAC,eAAe,EACpB,IAAI,CAAC,aAAa,EAClB,IAAI,CAAC,mBAAmB,EACxB,IAAI,CAAC,SAAS,CAAC,eAAe,EAAE,CACjC,CAAC;QAEF,MAAM,qBAAqB,GAAG;YAC5B,GAAG,EAAE,IAAA,mCAAsB,EAAC,QAAQ,CAAC;SACtC,CAAC;QAEF,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;QAC1B,IAAI,CAAC,KAAK,GAAG,qBAAqB,CAAC;QAEnC,IAAI,CAAC,IAAI,CAAC,uCAA2B,CAAC,CAAC;QAEvC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,mDAAmD;IAC3C,KAAK,CAAC,wBAAwB,CACpC,QAA8B;QAE9B,IAAI,CAAC,qBAAqB,GAAG,QAAQ,CAAC;QAEtC,MAAM,IAAI,CAAC,SAAS,CAAC,uBAAuB,CAC1C,KAAK,EAAE,OAAoB,EAAE,IAAiB,EAAE,EAAE;YAChD,OAAO,IAAI,CAAC,qBAAqB,EAAE,CACjC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,EACpB,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAClB,CAAC;QACJ,CAAC,CACF,CAAC;IACJ,CAAC;IAEO,KAAK,CAAC,kBAAkB,CAAC,OAAgB;QAC/C,MAAM,IAAI,CAAC,SAAS,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC;IAClD,CAAC;IAEO,iBAAiB,CAAC,KAAwB;QAChD,MAAM,YAAY,GAAG,KAAK,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE,CAAC;QACxD,MAAM,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAC5E,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE;YAC5B,IAAI,CAAC,4BAA4B,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;YACxD,IAAI,CAAC,6BAA6B,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;SAC1D;IACH,CAAC;IAEO,4BAA4B,CAAC,YAAoB,EAAE,MAAW;QACpE,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE;YACxB,YAAY;YACZ,MAAM;SACP,CAAC,CAAC;IACL,CAAC;IAEO,6BAA6B,CAAC,YAAoB,EAAE,MAAe;QACzE,MAAM,OAAO,GAAoB;YAC/B,IAAI,EAAE,kBAAkB;YACxB,IAAI,EAAE;gBACJ,YAAY;gBACZ,MAAM;aACP;SACF,CAAC;QAEF,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IAChC,CAAC;CACF;AArcD,gDAqcC;AAED,KAAK,UAAU,aAAa,CAAC,gBAAwB;IACnD,MAAM,cAAc,GAAG,MAAM,IAAA,4BAAc,GAAE,CAAC;IAC9C,MAAM,UAAU,GAAG,gBAAgB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAClD,OAAO,kBAAkB,cAAc,CAAC,OAAO,yBAAyB,UAAU,EAAE,CAAC;AACvF,CAAC;AAEM,KAAK,UAAU,4BAA4B,CAChD,4BAA0D,EAC1D,YAA0B,EAC1B,SAAqB;IAErB,GAAG,CAAC,uBAAuB,CAAC,CAAC;IAC7B,MAAM,aAAa,GAAG,MAAM,iBAAiB,CAAC,SAAS,CAAC,CAAC;IACzD,GAAG,CAAC,uBAAuB,CAAC,CAAC;IAC7B,MAAM,QAAQ,GAAG,MAAM,kBAAkB,CAAC,MAAM,CAC9C,4BAA4B,EAC5B,YAAY,EACZ,aAAa,CACd,CAAC;IACF,GAAG,CAAC,sBAAsB,CAAC,CAAC;IAE5B,OAAO,QAAQ,CAAC;AAClB,CAAC;AAhBD,oEAgBC;AAED,KAAK,UAAU,iBAAiB,CAC9B,SAAgC;IAEhC,IAAI,SAAS,KAAK,SAAS,EAAE;QAC3B,MAAM,cAAc,GAAG,MAAM,SAAS,CAAC,iBAAiB,EAAE,CAAC;QAE3D,IAAI;YACF,MAAM,UAAU,GAAG,MAAM,OAAO,CAAC,GAAG,CAClC,cAAc,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,kBAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAC7D,CAAC;YAEF,OAAO;gBACL,UAAU;aACX,CAAC;SACH;QAAC,OAAO,KAAK,EAAE;YACd,OAAO,CAAC,IAAI,CACV,oBAAU,CAAC,MAAM,CACf,yFAAyF,CAC1F,CACF,CAAC;YAEF,GAAG,CACD,gIAAgI,EAChI,KAAK,CACN,CAAC;SACH;KACF;AACH,CAAC;AAED,SAAS,2BAA2B,CAClC,MAAa;IAEb,OAAO,IAAA,2BAAc,EAAC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,uBAAgB,EAAE,wBAAiB,CAAC,CAAC;AAC/E,CAAC;AAED,SAAS,YAAY,CAAC,MAAa;IACjC,OAAO,IAAA,2BAAc,EAAC,MAAM,EAAE,iDAA+B,CAAC,CAAC;AACjE,CAAC"} +\ No newline at end of file +diff --git a/internal/hardhat-network/provider/utils/convertToEdr.d.ts b/internal/hardhat-network/provider/utils/convertToEdr.d.ts +index 69eebf11f2d8a5847ea74db738007391dde986b7..e91c521e4e420e13520f2114f1595cf0625510ba 100644 +--- a/internal/hardhat-network/provider/utils/convertToEdr.d.ts ++++ b/internal/hardhat-network/provider/utils/convertToEdr.d.ts +@@ -1,13 +1,11 @@ +-import type { SpecId, MineOrdering, IntervalRange, DebugTraceResult, TracingMessage, TracingMessageResult, TracingStep, HttpHeader } from "@nomicfoundation/edr"; ++import type { SpecId, MineOrdering, IntervalRange, TracingMessage, TracingMessageResult, TracingStep, HttpHeader } from "@nomicfoundation/edr"; + import { HardforkName } from "../../../util/hardforks"; + import { IntervalMiningConfig, MempoolOrder } from "../node-types"; +-import { RpcDebugTraceOutput } from "../output"; + import { MinimalEVMResult, MinimalInterpreterStep, MinimalMessage } from "../vm/types"; + export declare function ethereumsjsHardforkToEdrSpecId(hardfork: HardforkName): string; + export declare function edrSpecIdToEthereumHardfork(specId: SpecId): HardforkName; + export declare function ethereumjsIntervalMiningConfigToEdr(config: IntervalMiningConfig): bigint | IntervalRange | undefined; + export declare function ethereumjsMempoolOrderToEdrMineOrdering(mempoolOrder: MempoolOrder): MineOrdering; +-export declare function edrRpcDebugTraceToHardhat(rpcDebugTrace: DebugTraceResult): RpcDebugTraceOutput; + export declare function edrTracingStepToMinimalInterpreterStep(step: TracingStep): MinimalInterpreterStep; + export declare function edrTracingMessageResultToMinimalEVMResult(tracingMessageResult: TracingMessageResult): MinimalEVMResult; + export declare function edrTracingMessageToMinimalMessage(message: TracingMessage): MinimalMessage; +diff --git a/internal/hardhat-network/provider/utils/convertToEdr.d.ts.map b/internal/hardhat-network/provider/utils/convertToEdr.d.ts.map +index 23b0715c04680d560c779a40890217d96f60916f..11771582b3e38226fac624b9e10a7849baa9e414 100644 +--- a/internal/hardhat-network/provider/utils/convertToEdr.d.ts.map ++++ b/internal/hardhat-network/provider/utils/convertToEdr.d.ts.map +@@ -1 +1 @@ +-{"version":3,"file":"convertToEdr.d.ts","sourceRoot":"","sources":["../../../../src/internal/hardhat-network/provider/utils/convertToEdr.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EACN,YAAY,EACZ,aAAa,EACb,gBAAgB,EAChB,cAAc,EACd,oBAAoB,EACpB,WAAW,EACX,UAAU,EACX,MAAM,sBAAsB,CAAC;AAyB9B,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAE,oBAAoB,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAgB,MAAM,WAAW,CAAC;AAC9D,OAAO,EACL,gBAAgB,EAChB,sBAAsB,EACtB,cAAc,EACf,MAAM,aAAa,CAAC;AAIrB,wBAAgB,8BAA8B,CAAC,QAAQ,EAAE,YAAY,GAAG,MAAM,CA8C7E;AAED,wBAAgB,2BAA2B,CAAC,MAAM,EAAE,MAAM,GAAG,YAAY,CAgDxE;AAED,wBAAgB,mCAAmC,CACjD,MAAM,EAAE,oBAAoB,GAC3B,MAAM,GAAG,aAAa,GAAG,SAAS,CAcpC;AAED,wBAAgB,uCAAuC,CACrD,YAAY,EAAE,YAAY,GACzB,YAAY,CAWd;AAED,wBAAgB,yBAAyB,CACvC,aAAa,EAAE,gBAAgB,GAC9B,mBAAmB,CAoDrB;AAED,wBAAgB,sCAAsC,CACpD,IAAI,EAAE,WAAW,GAChB,sBAAsB,CAexB;AAED,wBAAgB,yCAAyC,CACvD,oBAAoB,EAAE,oBAAoB,GACzC,gBAAgB,CA+BlB;AAED,wBAAgB,iCAAiC,CAC/C,OAAO,EAAE,cAAc,GACtB,cAAc,CAahB;AAED,wBAAgB,gBAAgB,CAAC,KAAK,CAAC,EAAE;IACvC,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB,GAAG,UAAU,EAAE,GAAG,SAAS,CAc3B"} +\ No newline at end of file ++{"version":3,"file":"convertToEdr.d.ts","sourceRoot":"","sources":["../../../../src/internal/hardhat-network/provider/utils/convertToEdr.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EACN,YAAY,EACZ,aAAa,EAEb,cAAc,EACd,oBAAoB,EACpB,WAAW,EACX,UAAU,EACX,MAAM,sBAAsB,CAAC;AAyB9B,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAE,oBAAoB,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAEnE,OAAO,EACL,gBAAgB,EAChB,sBAAsB,EACtB,cAAc,EACf,MAAM,aAAa,CAAC;AAIrB,wBAAgB,8BAA8B,CAAC,QAAQ,EAAE,YAAY,GAAG,MAAM,CA8C7E;AAED,wBAAgB,2BAA2B,CAAC,MAAM,EAAE,MAAM,GAAG,YAAY,CAgDxE;AAED,wBAAgB,mCAAmC,CACjD,MAAM,EAAE,oBAAoB,GAC3B,MAAM,GAAG,aAAa,GAAG,SAAS,CAcpC;AAED,wBAAgB,uCAAuC,CACrD,YAAY,EAAE,YAAY,GACzB,YAAY,CAWd;AAED,wBAAgB,sCAAsC,CACpD,IAAI,EAAE,WAAW,GAChB,sBAAsB,CAexB;AAED,wBAAgB,yCAAyC,CACvD,oBAAoB,EAAE,oBAAoB,GACzC,gBAAgB,CA+BlB;AAED,wBAAgB,iCAAiC,CAC/C,OAAO,EAAE,cAAc,GACtB,cAAc,CAahB;AAED,wBAAgB,gBAAgB,CAAC,KAAK,CAAC,EAAE;IACvC,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB,GAAG,UAAU,EAAE,GAAG,SAAS,CAc3B"} +\ No newline at end of file +diff --git a/internal/hardhat-network/provider/utils/convertToEdr.js b/internal/hardhat-network/provider/utils/convertToEdr.js +index 9f306964d32309a3a72626fd5d522d2066758821..607ded63b8d569231d32202a368f1f6852708ba0 100644 +--- a/internal/hardhat-network/provider/utils/convertToEdr.js ++++ b/internal/hardhat-network/provider/utils/convertToEdr.js +@@ -1,6 +1,6 @@ + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); +-exports.httpHeadersToEdr = exports.edrTracingMessageToMinimalMessage = exports.edrTracingMessageResultToMinimalEVMResult = exports.edrTracingStepToMinimalInterpreterStep = exports.edrRpcDebugTraceToHardhat = exports.ethereumjsMempoolOrderToEdrMineOrdering = exports.ethereumjsIntervalMiningConfigToEdr = exports.edrSpecIdToEthereumHardfork = exports.ethereumsjsHardforkToEdrSpecId = void 0; ++exports.httpHeadersToEdr = exports.edrTracingMessageToMinimalMessage = exports.edrTracingMessageResultToMinimalEVMResult = exports.edrTracingStepToMinimalInterpreterStep = exports.ethereumjsMempoolOrderToEdrMineOrdering = exports.ethereumjsIntervalMiningConfigToEdr = exports.edrSpecIdToEthereumHardfork = exports.ethereumsjsHardforkToEdrSpecId = void 0; + const edr_1 = require("@nomicfoundation/edr"); + const util_1 = require("@ethereumjs/util"); + const napi_rs_1 = require("../../../../common/napi-rs"); +@@ -126,50 +126,6 @@ function ethereumjsMempoolOrderToEdrMineOrdering(mempoolOrder) { + } + } + exports.ethereumjsMempoolOrderToEdrMineOrdering = ethereumjsMempoolOrderToEdrMineOrdering; +-function edrRpcDebugTraceToHardhat(rpcDebugTrace) { +- const structLogs = rpcDebugTrace.structLogs.map((log) => { +- const result = { +- depth: Number(log.depth), +- gas: Number(log.gas), +- gasCost: Number(log.gasCost), +- op: log.opName, +- pc: Number(log.pc), +- }; +- if (log.memory !== undefined) { +- result.memory = log.memory; +- } +- if (log.stack !== undefined) { +- // Remove 0x prefix which is required by EIP-3155, but not expected by Hardhat. +- result.stack = log.stack?.map((item) => item.slice(2)); +- } +- if (log.storage !== undefined) { +- result.storage = Object.fromEntries(Object.entries(log.storage).map(([key, value]) => { +- return [key.slice(2), value.slice(2)]; +- })); +- } +- if (log.error !== undefined) { +- result.error = { +- message: log.error, +- }; +- } +- return result; +- }); +- // REVM trace adds initial STOP that Hardhat doesn't expect +- if (structLogs.length > 0 && structLogs[0].op === "STOP") { +- structLogs.shift(); +- } +- let returnValue = rpcDebugTrace.output?.toString() ?? ""; +- if (returnValue === "0x") { +- returnValue = ""; +- } +- return { +- failed: !rpcDebugTrace.pass, +- gas: Number(rpcDebugTrace.gasUsed), +- returnValue, +- structLogs, +- }; +-} +-exports.edrRpcDebugTraceToHardhat = edrRpcDebugTraceToHardhat; + function edrTracingStepToMinimalInterpreterStep(step) { + const minimalInterpreterStep = { + pc: Number(step.pc), +diff --git a/internal/hardhat-network/provider/utils/convertToEdr.js.map b/internal/hardhat-network/provider/utils/convertToEdr.js.map +index f83df9fdce13dcce820f520b556ec9dce9537ff8..b97968227b38b48845d60e4a93e8dd21f21cc778 100644 +--- a/internal/hardhat-network/provider/utils/convertToEdr.js.map ++++ b/internal/hardhat-network/provider/utils/convertToEdr.js.map +@@ -1 +1 @@ +-{"version":3,"file":"convertToEdr.js","sourceRoot":"","sources":["../../../../src/internal/hardhat-network/provider/utils/convertToEdr.ts"],"names":[],"mappings":";;;AAUA,8CAoB8B;AAC9B,2CAA2C;AAE3C,wDAAiE;AACjE,uDAAuD;AASvD,+EAA+E;AAE/E,SAAgB,8BAA8B,CAAC,QAAsB;IACnE,QAAQ,QAAQ,EAAE;QAChB,KAAK,wBAAY,CAAC,QAAQ;YACxB,OAAO,cAAQ,CAAC;QAClB,KAAK,wBAAY,CAAC,SAAS;YACzB,OAAO,eAAS,CAAC;QACnB,KAAK,wBAAY,CAAC,GAAG;YACnB,OAAO,cAAQ,CAAC;QAClB,KAAK,wBAAY,CAAC,iBAAiB;YACjC,OAAO,eAAS,CAAC;QACnB,KAAK,wBAAY,CAAC,eAAe;YAC/B,OAAO,qBAAe,CAAC;QACzB,KAAK,wBAAY,CAAC,SAAS;YACzB,OAAO,eAAS,CAAC;QACnB,KAAK,wBAAY,CAAC,cAAc;YAC9B,OAAO,oBAAc,CAAC;QACxB,KAAK,wBAAY,CAAC,UAAU;YAC1B,OAAO,gBAAU,CAAC;QACpB,KAAK,wBAAY,CAAC,QAAQ;YACxB,OAAO,cAAQ,CAAC;QAClB,KAAK,wBAAY,CAAC,YAAY;YAC5B,OAAO,kBAAY,CAAC;QACtB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,YAAM,CAAC;QAChB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,YAAM,CAAC;QAChB,KAAK,wBAAY,CAAC,aAAa;YAC7B,OAAO,mBAAa,CAAC;QACvB,KAAK,wBAAY,CAAC,YAAY;YAC5B,OAAO,kBAAY,CAAC;QACtB,KAAK,wBAAY,CAAC,KAAK;YACrB,OAAO,WAAK,CAAC;QACf,KAAK,wBAAY,CAAC,QAAQ;YACxB,OAAO,cAAQ,CAAC;QAClB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,YAAM,CAAC;QAChB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,YAAM,CAAC;QAChB,KAAK,wBAAY,CAAC,KAAK;YACrB,OAAO,WAAK,CAAC;QACf;YACE,MAAM,gBAAgB,GAAU,QAAQ,CAAC;YACzC,MAAM,IAAI,KAAK,CACb,0BAA0B,QAAkB,0BAA0B,CACvE,CAAC;KACL;AACH,CAAC;AA9CD,wEA8CC;AAED,SAAgB,2BAA2B,CAAC,MAAc;IACxD,MAAM,EAAE,MAAM,EAAE,GAAG,IAAA,6BAAmB,EACpC,sBAAsB,CACkB,CAAC;IAE3C,QAAQ,MAAM,EAAE;QACd,KAAK,MAAM,CAAC,QAAQ;YAClB,OAAO,wBAAY,CAAC,QAAQ,CAAC;QAC/B,KAAK,MAAM,CAAC,SAAS;YACnB,OAAO,wBAAY,CAAC,SAAS,CAAC;QAChC,KAAK,MAAM,CAAC,OAAO;YACjB,OAAO,wBAAY,CAAC,GAAG,CAAC;QAC1B,KAAK,MAAM,CAAC,SAAS;YACnB,OAAO,wBAAY,CAAC,iBAAiB,CAAC;QACxC,KAAK,MAAM,CAAC,cAAc;YACxB,OAAO,wBAAY,CAAC,eAAe,CAAC;QACtC,KAAK,MAAM,CAAC,SAAS;YACnB,OAAO,wBAAY,CAAC,SAAS,CAAC;QAChC,KAAK,MAAM,CAAC,cAAc;YACxB,OAAO,wBAAY,CAAC,cAAc,CAAC;QACrC,KAAK,MAAM,CAAC,UAAU;YACpB,OAAO,wBAAY,CAAC,UAAU,CAAC;QACjC,KAAK,MAAM,CAAC,QAAQ;YAClB,OAAO,wBAAY,CAAC,QAAQ,CAAC;QAC/B,KAAK,MAAM,CAAC,WAAW;YACrB,OAAO,wBAAY,CAAC,YAAY,CAAC;QACnC,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,YAAY;YACtB,OAAO,wBAAY,CAAC,aAAa,CAAC;QACpC,KAAK,MAAM,CAAC,WAAW;YACrB,OAAO,wBAAY,CAAC,YAAY,CAAC;QACnC,KAAK,MAAM,CAAC,KAAK;YACf,OAAO,wBAAY,CAAC,KAAK,CAAC;QAC5B,KAAK,MAAM,CAAC,QAAQ;YAClB,OAAO,wBAAY,CAAC,QAAQ,CAAC;QAC/B,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,KAAK;YACf,OAAO,wBAAY,CAAC,KAAK,CAAC;QAE5B;YACE,MAAM,IAAI,KAAK,CAAC,oBAAoB,MAAM,0BAA0B,CAAC,CAAC;KACzE;AACH,CAAC;AAhDD,kEAgDC;AAED,SAAgB,mCAAmC,CACjD,MAA4B;IAE5B,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;QAC9B,+BAA+B;QAC/B,IAAI,MAAM,KAAK,CAAC,EAAE;YAChB,OAAO,SAAS,CAAC;SAClB;aAAM;YACL,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC;SACvB;KACF;SAAM;QACL,OAAO;YACL,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YACtB,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;SACvB,CAAC;KACH;AACH,CAAC;AAhBD,kFAgBC;AAED,SAAgB,uCAAuC,CACrD,YAA0B;IAE1B,MAAM,EAAE,YAAY,EAAE,GAAG,IAAA,6BAAmB,EAC1C,sBAAsB,CACkB,CAAC;IAE3C,QAAQ,YAAY,EAAE;QACpB,KAAK,MAAM;YACT,OAAO,YAAY,CAAC,IAAI,CAAC;QAC3B,KAAK,UAAU;YACb,OAAO,YAAY,CAAC,QAAQ,CAAC;KAChC;AACH,CAAC;AAbD,0FAaC;AAED,SAAgB,yBAAyB,CACvC,aAA+B;IAE/B,MAAM,UAAU,GAAG,aAAa,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE;QACtD,MAAM,MAAM,GAAiB;YAC3B,KAAK,EAAE,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC;YACxB,GAAG,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;YACpB,OAAO,EAAE,MAAM,CAAC,GAAG,CAAC,OAAO,CAAC;YAC5B,EAAE,EAAE,GAAG,CAAC,MAAM;YACd,EAAE,EAAE,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC;SACnB,CAAC;QAEF,IAAI,GAAG,CAAC,MAAM,KAAK,SAAS,EAAE;YAC5B,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;SAC5B;QAED,IAAI,GAAG,CAAC,KAAK,KAAK,SAAS,EAAE;YAC3B,+EAA+E;YAC/E,MAAM,CAAC,KAAK,GAAG,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;SACxD;QAED,IAAI,GAAG,CAAC,OAAO,KAAK,SAAS,EAAE;YAC7B,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC,WAAW,CACjC,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,EAAE;gBAC/C,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;YACxC,CAAC,CAAC,CACH,CAAC;SACH;QAED,IAAI,GAAG,CAAC,KAAK,KAAK,SAAS,EAAE;YAC3B,MAAM,CAAC,KAAK,GAAG;gBACb,OAAO,EAAE,GAAG,CAAC,KAAK;aACnB,CAAC;SACH;QAED,OAAO,MAAM,CAAC;IAChB,CAAC,CAAC,CAAC;IAEH,2DAA2D;IAC3D,IAAI,UAAU,CAAC,MAAM,GAAG,CAAC,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,MAAM,EAAE;QACxD,UAAU,CAAC,KAAK,EAAE,CAAC;KACpB;IAED,IAAI,WAAW,GAAG,aAAa,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzD,IAAI,WAAW,KAAK,IAAI,EAAE;QACxB,WAAW,GAAG,EAAE,CAAC;KAClB;IAED,OAAO;QACL,MAAM,EAAE,CAAC,aAAa,CAAC,IAAI;QAC3B,GAAG,EAAE,MAAM,CAAC,aAAa,CAAC,OAAO,CAAC;QAClC,WAAW;QACX,UAAU;KACX,CAAC;AACJ,CAAC;AAtDD,8DAsDC;AAED,SAAgB,sCAAsC,CACpD,IAAiB;IAEjB,MAAM,sBAAsB,GAA2B;QACrD,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;QACnB,KAAK,EAAE,IAAI,CAAC,KAAK;QACjB,MAAM,EAAE;YACN,IAAI,EAAE,IAAI,CAAC,MAAM;SAClB;QACD,KAAK,EAAE,IAAI,CAAC,KAAK;KAClB,CAAC;IAEF,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,EAAE;QAC7B,sBAAsB,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;KAC7C;IAED,OAAO,sBAAsB,CAAC;AAChC,CAAC;AAjBD,wFAiBC;AAED,SAAgB,yCAAyC,CACvD,oBAA0C;IAE1C,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,GAAG,oBAAoB,CAAC,eAAe,CAAC;IAEzE,8BAA8B;IAC9B,MAAM,OAAO,GAAG,MAAM,IAAI,MAAM,CAAC;IAEjC,MAAM,gBAAgB,GAAqB;QACzC,UAAU,EAAE;YACV,gBAAgB,EAAE,MAAM,CAAC,OAAO;YAChC,OAAO;SACR;KACF,CAAC;IAEF,gDAAgD;IAChD,IAAI,QAAQ,IAAI,MAAM,EAAE;QACtB,gBAAgB,CAAC,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;KACpD;IACD,IAAI,QAAQ,IAAI,MAAM,EAAE;QACtB,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC;QAC1B,IAAI,MAAM,YAAY,UAAU,EAAE;YAChC,gBAAgB,CAAC,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;SAC1D;aAAM;YACL,gBAAgB,CAAC,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;SACtE;KACF;IAED,IAAI,eAAe,KAAK,SAAS,EAAE;QACjC,gBAAgB,CAAC,UAAU,CAAC,eAAe,GAAG,IAAI,cAAO,CAAC,eAAe,CAAC,CAAC;KAC5E;IAED,OAAO,gBAAgB,CAAC;AAC1B,CAAC;AAjCD,8FAiCC;AAED,SAAgB,iCAAiC,CAC/C,OAAuB;IAEvB,OAAO;QACL,EAAE,EAAE,OAAO,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,cAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS;QAClE,WAAW,EACT,OAAO,CAAC,WAAW,KAAK,SAAS;YAC/B,CAAC,CAAC,IAAI,cAAO,CAAC,OAAO,CAAC,WAAW,CAAC;YAClC,CAAC,CAAC,SAAS;QACf,IAAI,EAAE,OAAO,CAAC,IAAI;QAClB,KAAK,EAAE,OAAO,CAAC,KAAK;QACpB,MAAM,EAAE,IAAI,cAAO,CAAC,OAAO,CAAC,MAAM,CAAC;QACnC,QAAQ,EAAE,OAAO,CAAC,QAAQ;QAC1B,YAAY,EAAE,OAAO,CAAC,YAAY;KACnC,CAAC;AACJ,CAAC;AAfD,8EAeC;AAED,SAAgB,gBAAgB,CAAC,KAEhC;IACC,IAAI,WAAqC,CAAC;IAC1C,IAAI,KAAK,KAAK,SAAS,EAAE;QACvB,WAAW,GAAG,EAAE,CAAC;QAEjB,KAAK,MAAM,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;YACjD,WAAW,CAAC,IAAI,CAAC;gBACf,IAAI;gBACJ,KAAK;aACN,CAAC,CAAC;SACJ;KACF;IAED,OAAO,WAAW,CAAC;AACrB,CAAC;AAhBD,4CAgBC"} +\ No newline at end of file ++{"version":3,"file":"convertToEdr.js","sourceRoot":"","sources":["../../../../src/internal/hardhat-network/provider/utils/convertToEdr.ts"],"names":[],"mappings":";;;AAUA,8CAoB8B;AAC9B,2CAA2C;AAE3C,wDAAiE;AACjE,uDAAuD;AASvD,+EAA+E;AAE/E,SAAgB,8BAA8B,CAAC,QAAsB;IACnE,QAAQ,QAAQ,EAAE;QAChB,KAAK,wBAAY,CAAC,QAAQ;YACxB,OAAO,cAAQ,CAAC;QAClB,KAAK,wBAAY,CAAC,SAAS;YACzB,OAAO,eAAS,CAAC;QACnB,KAAK,wBAAY,CAAC,GAAG;YACnB,OAAO,cAAQ,CAAC;QAClB,KAAK,wBAAY,CAAC,iBAAiB;YACjC,OAAO,eAAS,CAAC;QACnB,KAAK,wBAAY,CAAC,eAAe;YAC/B,OAAO,qBAAe,CAAC;QACzB,KAAK,wBAAY,CAAC,SAAS;YACzB,OAAO,eAAS,CAAC;QACnB,KAAK,wBAAY,CAAC,cAAc;YAC9B,OAAO,oBAAc,CAAC;QACxB,KAAK,wBAAY,CAAC,UAAU;YAC1B,OAAO,gBAAU,CAAC;QACpB,KAAK,wBAAY,CAAC,QAAQ;YACxB,OAAO,cAAQ,CAAC;QAClB,KAAK,wBAAY,CAAC,YAAY;YAC5B,OAAO,kBAAY,CAAC;QACtB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,YAAM,CAAC;QAChB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,YAAM,CAAC;QAChB,KAAK,wBAAY,CAAC,aAAa;YAC7B,OAAO,mBAAa,CAAC;QACvB,KAAK,wBAAY,CAAC,YAAY;YAC5B,OAAO,kBAAY,CAAC;QACtB,KAAK,wBAAY,CAAC,KAAK;YACrB,OAAO,WAAK,CAAC;QACf,KAAK,wBAAY,CAAC,QAAQ;YACxB,OAAO,cAAQ,CAAC;QAClB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,YAAM,CAAC;QAChB,KAAK,wBAAY,CAAC,MAAM;YACtB,OAAO,YAAM,CAAC;QAChB,KAAK,wBAAY,CAAC,KAAK;YACrB,OAAO,WAAK,CAAC;QACf;YACE,MAAM,gBAAgB,GAAU,QAAQ,CAAC;YACzC,MAAM,IAAI,KAAK,CACb,0BAA0B,QAAkB,0BAA0B,CACvE,CAAC;KACL;AACH,CAAC;AA9CD,wEA8CC;AAED,SAAgB,2BAA2B,CAAC,MAAc;IACxD,MAAM,EAAE,MAAM,EAAE,GAAG,IAAA,6BAAmB,EACpC,sBAAsB,CACkB,CAAC;IAE3C,QAAQ,MAAM,EAAE;QACd,KAAK,MAAM,CAAC,QAAQ;YAClB,OAAO,wBAAY,CAAC,QAAQ,CAAC;QAC/B,KAAK,MAAM,CAAC,SAAS;YACnB,OAAO,wBAAY,CAAC,SAAS,CAAC;QAChC,KAAK,MAAM,CAAC,OAAO;YACjB,OAAO,wBAAY,CAAC,GAAG,CAAC;QAC1B,KAAK,MAAM,CAAC,SAAS;YACnB,OAAO,wBAAY,CAAC,iBAAiB,CAAC;QACxC,KAAK,MAAM,CAAC,cAAc;YACxB,OAAO,wBAAY,CAAC,eAAe,CAAC;QACtC,KAAK,MAAM,CAAC,SAAS;YACnB,OAAO,wBAAY,CAAC,SAAS,CAAC;QAChC,KAAK,MAAM,CAAC,cAAc;YACxB,OAAO,wBAAY,CAAC,cAAc,CAAC;QACrC,KAAK,MAAM,CAAC,UAAU;YACpB,OAAO,wBAAY,CAAC,UAAU,CAAC;QACjC,KAAK,MAAM,CAAC,QAAQ;YAClB,OAAO,wBAAY,CAAC,QAAQ,CAAC;QAC/B,KAAK,MAAM,CAAC,WAAW;YACrB,OAAO,wBAAY,CAAC,YAAY,CAAC;QACnC,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,YAAY;YACtB,OAAO,wBAAY,CAAC,aAAa,CAAC;QACpC,KAAK,MAAM,CAAC,WAAW;YACrB,OAAO,wBAAY,CAAC,YAAY,CAAC;QACnC,KAAK,MAAM,CAAC,KAAK;YACf,OAAO,wBAAY,CAAC,KAAK,CAAC;QAC5B,KAAK,MAAM,CAAC,QAAQ;YAClB,OAAO,wBAAY,CAAC,QAAQ,CAAC;QAC/B,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,MAAM;YAChB,OAAO,wBAAY,CAAC,MAAM,CAAC;QAC7B,KAAK,MAAM,CAAC,KAAK;YACf,OAAO,wBAAY,CAAC,KAAK,CAAC;QAE5B;YACE,MAAM,IAAI,KAAK,CAAC,oBAAoB,MAAM,0BAA0B,CAAC,CAAC;KACzE;AACH,CAAC;AAhDD,kEAgDC;AAED,SAAgB,mCAAmC,CACjD,MAA4B;IAE5B,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;QAC9B,+BAA+B;QAC/B,IAAI,MAAM,KAAK,CAAC,EAAE;YAChB,OAAO,SAAS,CAAC;SAClB;aAAM;YACL,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC;SACvB;KACF;SAAM;QACL,OAAO;YACL,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YACtB,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;SACvB,CAAC;KACH;AACH,CAAC;AAhBD,kFAgBC;AAED,SAAgB,uCAAuC,CACrD,YAA0B;IAE1B,MAAM,EAAE,YAAY,EAAE,GAAG,IAAA,6BAAmB,EAC1C,sBAAsB,CACkB,CAAC;IAE3C,QAAQ,YAAY,EAAE;QACpB,KAAK,MAAM;YACT,OAAO,YAAY,CAAC,IAAI,CAAC;QAC3B,KAAK,UAAU;YACb,OAAO,YAAY,CAAC,QAAQ,CAAC;KAChC;AACH,CAAC;AAbD,0FAaC;AAED,SAAgB,sCAAsC,CACpD,IAAiB;IAEjB,MAAM,sBAAsB,GAA2B;QACrD,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;QACnB,KAAK,EAAE,IAAI,CAAC,KAAK;QACjB,MAAM,EAAE;YACN,IAAI,EAAE,IAAI,CAAC,MAAM;SAClB;QACD,KAAK,EAAE,IAAI,CAAC,KAAK;KAClB,CAAC;IAEF,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,EAAE;QAC7B,sBAAsB,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;KAC7C;IAED,OAAO,sBAAsB,CAAC;AAChC,CAAC;AAjBD,wFAiBC;AAED,SAAgB,yCAAyC,CACvD,oBAA0C;IAE1C,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,GAAG,oBAAoB,CAAC,eAAe,CAAC;IAEzE,8BAA8B;IAC9B,MAAM,OAAO,GAAG,MAAM,IAAI,MAAM,CAAC;IAEjC,MAAM,gBAAgB,GAAqB;QACzC,UAAU,EAAE;YACV,gBAAgB,EAAE,MAAM,CAAC,OAAO;YAChC,OAAO;SACR;KACF,CAAC;IAEF,gDAAgD;IAChD,IAAI,QAAQ,IAAI,MAAM,EAAE;QACtB,gBAAgB,CAAC,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;KACpD;IACD,IAAI,QAAQ,IAAI,MAAM,EAAE;QACtB,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC;QAC1B,IAAI,MAAM,YAAY,UAAU,EAAE;YAChC,gBAAgB,CAAC,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;SAC1D;aAAM;YACL,gBAAgB,CAAC,UAAU,CAAC,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC;SACtE;KACF;IAED,IAAI,eAAe,KAAK,SAAS,EAAE;QACjC,gBAAgB,CAAC,UAAU,CAAC,eAAe,GAAG,IAAI,cAAO,CAAC,eAAe,CAAC,CAAC;KAC5E;IAED,OAAO,gBAAgB,CAAC;AAC1B,CAAC;AAjCD,8FAiCC;AAED,SAAgB,iCAAiC,CAC/C,OAAuB;IAEvB,OAAO;QACL,EAAE,EAAE,OAAO,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,cAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS;QAClE,WAAW,EACT,OAAO,CAAC,WAAW,KAAK,SAAS;YAC/B,CAAC,CAAC,IAAI,cAAO,CAAC,OAAO,CAAC,WAAW,CAAC;YAClC,CAAC,CAAC,SAAS;QACf,IAAI,EAAE,OAAO,CAAC,IAAI;QAClB,KAAK,EAAE,OAAO,CAAC,KAAK;QACpB,MAAM,EAAE,IAAI,cAAO,CAAC,OAAO,CAAC,MAAM,CAAC;QACnC,QAAQ,EAAE,OAAO,CAAC,QAAQ;QAC1B,YAAY,EAAE,OAAO,CAAC,YAAY;KACnC,CAAC;AACJ,CAAC;AAfD,8EAeC;AAED,SAAgB,gBAAgB,CAAC,KAEhC;IACC,IAAI,WAAqC,CAAC;IAC1C,IAAI,KAAK,KAAK,SAAS,EAAE;QACvB,WAAW,GAAG,EAAE,CAAC;QAEjB,KAAK,MAAM,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;YACjD,WAAW,CAAC,IAAI,CAAC;gBACf,IAAI;gBACJ,KAAK;aACN,CAAC,CAAC;SACJ;KACF;IAED,OAAO,WAAW,CAAC;AACrB,CAAC;AAhBD,4CAgBC"} +\ No newline at end of file +diff --git a/src/internal/hardhat-network/provider/provider.ts b/src/internal/hardhat-network/provider/provider.ts +index 57dfafe6a113c54f1fc4f1dc429e99756507e71c..e9cef2f86fd515586bf9b4ca136aa7df26bfcb58 100644 +--- a/src/internal/hardhat-network/provider/provider.ts ++++ b/src/internal/hardhat-network/provider/provider.ts +@@ -65,7 +65,6 @@ import { + MempoolOrder, + } from "./node-types"; + import { +- edrRpcDebugTraceToHardhat, + edrTracingMessageResultToMinimalEVMResult, + edrTracingMessageToMinimalMessage, + edrTracingStepToMinimalInterpreterStep, +@@ -481,11 +480,6 @@ export class EdrProviderWrapper + // e.g. `HardhatNetwork/2.19.0/@nomicfoundation/edr/0.2.0-dev` + if (args.method === "web3_clientVersion") { + return clientVersion(response.result); +- } else if ( +- args.method === "debug_traceTransaction" || +- args.method === "debug_traceCall" +- ) { +- return edrRpcDebugTraceToHardhat(response.result); + } else { + return response.result; + } +diff --git a/src/internal/hardhat-network/provider/utils/convertToEdr.ts b/src/internal/hardhat-network/provider/utils/convertToEdr.ts +index 7fc17b29c0483c4f72ec471f8be60ce7d563add8..4dc5ebf3db263a281623ac2b161b7b5bb24a96a6 100644 +--- a/src/internal/hardhat-network/provider/utils/convertToEdr.ts ++++ b/src/internal/hardhat-network/provider/utils/convertToEdr.ts +@@ -174,62 +174,6 @@ export function ethereumjsMempoolOrderToEdrMineOrdering( + } + } + +-export function edrRpcDebugTraceToHardhat( +- rpcDebugTrace: DebugTraceResult +-): RpcDebugTraceOutput { +- const structLogs = rpcDebugTrace.structLogs.map((log) => { +- const result: RpcStructLog = { +- depth: Number(log.depth), +- gas: Number(log.gas), +- gasCost: Number(log.gasCost), +- op: log.opName, +- pc: Number(log.pc), +- }; +- +- if (log.memory !== undefined) { +- result.memory = log.memory; +- } +- +- if (log.stack !== undefined) { +- // Remove 0x prefix which is required by EIP-3155, but not expected by Hardhat. +- result.stack = log.stack?.map((item) => item.slice(2)); +- } +- +- if (log.storage !== undefined) { +- result.storage = Object.fromEntries( +- Object.entries(log.storage).map(([key, value]) => { +- return [key.slice(2), value.slice(2)]; +- }) +- ); +- } +- +- if (log.error !== undefined) { +- result.error = { +- message: log.error, +- }; +- } +- +- return result; +- }); +- +- // REVM trace adds initial STOP that Hardhat doesn't expect +- if (structLogs.length > 0 && structLogs[0].op === "STOP") { +- structLogs.shift(); +- } +- +- let returnValue = rpcDebugTrace.output?.toString() ?? ""; +- if (returnValue === "0x") { +- returnValue = ""; +- } +- +- return { +- failed: !rpcDebugTrace.pass, +- gas: Number(rpcDebugTrace.gasUsed), +- returnValue, +- structLogs, +- }; +-} +- + export function edrTracingStepToMinimalInterpreterStep( + step: TracingStep + ): MinimalInterpreterStep { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ee630217a0..79a604190e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,9 +11,9 @@ patchedDependencies: '@defi-wonderland/smock@2.4.0': hash: 5e5b11ceb52a214d4578a3f669f771954fa62027a2f89dbee62ba7b5b395b715 path: patches/@defi-wonderland__smock@2.4.0.patch - hardhat@2.26.1: - hash: 7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd - path: patches/hardhat@2.26.1.patch + hardhat@2.28.0: + hash: bb6ff7484894a37f153d62c87e2650fed465dcdd08a3b4b3cf000375c8be72d1 + path: patches/hardhat@2.28.0.patch hardhat@3.0.15: hash: 88f24b805f3646200376fc903f4030a369d2569ed20d2aeb96ec00493b6487d5 path: patches/hardhat@3.0.15.patch @@ -215,8 +215,8 @@ importers: specifier: ^7.0.1 version: 7.0.1 hardhat: - specifier: 2.26.1 - version: 2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3) + specifier: 2.28.0 + version: 2.28.0(patch_hash=bb6ff7484894a37f153d62c87e2650fed465dcdd08a3b4b3cf000375c8be72d1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3) mocha: specifier: ^10.0.0 version: 10.3.0 @@ -246,10 +246,10 @@ importers: devDependencies: '@defi-wonderland/smock': specifier: 2.4.0 - version: 2.4.0(patch_hash=5e5b11ceb52a214d4578a3f669f771954fa62027a2f89dbee62ba7b5b395b715)(@ethersproject/abi@5.7.0)(@ethersproject/abstract-provider@5.7.0)(@ethersproject/abstract-signer@5.7.0)(@nomiclabs/hardhat-ethers@2.2.3(ethers@5.7.2)(hardhat@2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3)))(ethers@5.7.2)(hardhat@2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3)) + version: 2.4.0(patch_hash=5e5b11ceb52a214d4578a3f669f771954fa62027a2f89dbee62ba7b5b395b715)(@ethersproject/abi@5.7.0)(@ethersproject/abstract-provider@5.7.0)(@ethersproject/abstract-signer@5.7.0)(@nomiclabs/hardhat-ethers@2.2.3(ethers@5.7.2)(hardhat@2.26.1(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3)))(ethers@5.7.2)(hardhat@2.26.1(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3)) '@nomiclabs/hardhat-ethers': specifier: ^2.2.3 - version: 2.2.3(ethers@5.7.2)(hardhat@2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3)) + version: 2.2.3(ethers@5.7.2)(hardhat@2.26.1(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3)) '@types/node': specifier: ^20.0.0 version: 20.16.1 @@ -261,7 +261,7 @@ importers: version: 5.7.2 hardhat: specifier: 2.26.1 - version: 2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3) + version: 2.26.1(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3) mocha: specifier: ^10.0.0 version: 10.3.0 @@ -322,7 +322,7 @@ importers: version: 3.0.15(patch_hash=88f24b805f3646200376fc903f4030a369d2569ed20d2aeb96ec00493b6487d5) hardhat2: specifier: npm:hardhat@2.26.1 - version: hardhat@2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3) + version: hardhat@2.26.1(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3) lodash: specifier: ^4.17.11 version: 4.17.21 @@ -2084,6 +2084,18 @@ packages: typescript: optional: true + hardhat@2.28.0: + resolution: {integrity: sha512-A3yBISI18EcnY2IR7Ny2xZF33Q3qH01yrWapeWbyGOiJm/386SasWjbHRHYgUlZ3YWJETIMh7wYfMUaXrofTDQ==} + hasBin: true + peerDependencies: + ts-node: '*' + typescript: '*' + peerDependenciesMeta: + ts-node: + optional: true + typescript: + optional: true + hardhat@3.0.15: resolution: {integrity: sha512-cXxaeSxFJ+u0MfbvWsS3Gdr7/uP7wjo4xviYcGdu9AKtwY6YsU+v0quK/j1NWmvO1Y4gk350SdZzQw++hJy4LA==} hasBin: true @@ -3429,16 +3441,16 @@ snapshots: dependencies: '@jridgewell/trace-mapping': 0.3.9 - '@defi-wonderland/smock@2.4.0(patch_hash=5e5b11ceb52a214d4578a3f669f771954fa62027a2f89dbee62ba7b5b395b715)(@ethersproject/abi@5.7.0)(@ethersproject/abstract-provider@5.7.0)(@ethersproject/abstract-signer@5.7.0)(@nomiclabs/hardhat-ethers@2.2.3(ethers@5.7.2)(hardhat@2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3)))(ethers@5.7.2)(hardhat@2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3))': + '@defi-wonderland/smock@2.4.0(patch_hash=5e5b11ceb52a214d4578a3f669f771954fa62027a2f89dbee62ba7b5b395b715)(@ethersproject/abi@5.7.0)(@ethersproject/abstract-provider@5.7.0)(@ethersproject/abstract-signer@5.7.0)(@nomiclabs/hardhat-ethers@2.2.3(ethers@5.7.2)(hardhat@2.26.1(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3)))(ethers@5.7.2)(hardhat@2.26.1(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3))': dependencies: '@ethersproject/abi': 5.7.0 '@ethersproject/abstract-provider': 5.7.0 '@ethersproject/abstract-signer': 5.7.0 '@nomicfoundation/ethereumjs-util': 9.0.4 - '@nomiclabs/hardhat-ethers': 2.2.3(ethers@5.7.2)(hardhat@2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3)) + '@nomiclabs/hardhat-ethers': 2.2.3(ethers@5.7.2)(hardhat@2.26.1(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3)) diff: 5.0.0 ethers: 5.7.2 - hardhat: 2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3) + hardhat: 2.26.1(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3) lodash.isequal: 4.5.0 lodash.isequalwith: 4.4.0 rxjs: 7.8.1 @@ -3536,7 +3548,7 @@ snapshots: '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.1 espree: 9.6.1 globals: 13.24.0 ignore: 5.3.1 @@ -3816,7 +3828,7 @@ snapshots: '@humanwhocodes/config-array@0.11.14': dependencies: '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.1 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -4031,10 +4043,10 @@ snapshots: '@nomicfoundation/solidity-analyzer-win32-ia32-msvc': 0.1.1 '@nomicfoundation/solidity-analyzer-win32-x64-msvc': 0.1.1 - '@nomiclabs/hardhat-ethers@2.2.3(ethers@5.7.2)(hardhat@2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3))': + '@nomiclabs/hardhat-ethers@2.2.3(ethers@5.7.2)(hardhat@2.26.1(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3))': dependencies: ethers: 5.7.2 - hardhat: 2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3) + hardhat: 2.26.1(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3) '@pkgr/core@0.1.1': {} @@ -4283,7 +4295,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.8.3) '@typescript-eslint/utils': 5.61.0(eslint@8.57.0)(typescript@5.8.3) - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.1 eslint: 8.57.0 tsutils: 3.21.0(typescript@5.8.3) optionalDependencies: @@ -4297,7 +4309,7 @@ snapshots: dependencies: '@typescript-eslint/types': 5.61.0 '@typescript-eslint/visitor-keys': 5.61.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.1 globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.3 @@ -5350,7 +5362,56 @@ snapshots: graphemer@1.4.0: {} - hardhat@2.26.1(patch_hash=7e65150b934ddc045e542b7868eebf0b79d94c2d3ce0c10e7288e0bf8f24d8bd)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3): + hardhat@2.26.1(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3): + dependencies: + '@ethereumjs/util': 9.1.0 + '@ethersproject/abi': 5.7.0 + '@nomicfoundation/edr': link:crates/edr_napi + '@nomicfoundation/solidity-analyzer': 0.1.1 + '@sentry/node': 5.30.0 + adm-zip: 0.4.16 + aggregate-error: 3.1.0 + ansi-escapes: 4.3.2 + boxen: 5.1.2 + chokidar: 4.0.1 + ci-info: 2.0.0 + debug: 4.4.1 + enquirer: 2.4.1 + env-paths: 2.2.1 + ethereum-cryptography: 1.2.0 + find-up: 5.0.0 + fp-ts: 1.19.3 + fs-extra: 7.0.1 + immutable: 4.3.5 + io-ts: 1.10.4 + json-stream-stringify: 3.1.6 + keccak: 3.0.4 + lodash: 4.17.21 + micro-eth-signer: 0.14.0 + mnemonist: 0.38.5 + mocha: 10.3.0 + p-map: 4.0.0 + picocolors: 1.1.1 + raw-body: 2.5.2 + resolve: 1.17.0 + semver: 6.3.1 + solc: 0.8.26(debug@4.4.1) + source-map-support: 0.5.21 + stacktrace-parser: 0.1.10 + tinyglobby: 0.2.10 + tsort: 0.0.1 + undici: 5.28.3 + uuid: 8.3.2 + ws: 7.5.9 + optionalDependencies: + ts-node: 10.9.2(@types/node@20.16.1)(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + hardhat@2.28.0(patch_hash=bb6ff7484894a37f153d62c87e2650fed465dcdd08a3b4b3cf000375c8be72d1)(ts-node@10.9.2(@types/node@20.16.1)(typescript@5.8.3))(typescript@5.8.3): dependencies: '@ethereumjs/util': 9.1.0 '@ethersproject/abi': 5.7.0 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 49a28196e9..547e88e62f 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -11,4 +11,5 @@ minimumReleaseAge: 10080 # Allow immediate installs for the following packages minimumReleaseAgeExclude: - - '@nomicfoundation/*' + - "@nomicfoundation/*" + - "hardhat"